initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

34
squashfs-tools/PKGBUILD Normal file
View File

@@ -0,0 +1,34 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=squashfs-tools
pkgver=4.4
pkgrel=2
pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for GNU/Linux-libre"
url='https://github.com/plougher/squashfs-tools'
license=('GPL-2')
arch=('i686' 'x86_64')
depends=('zlib' 'lzo' 'xz' 'lz4')
source=("$pkgname-$pkgver.tar.gz::https://github.com/plougher/squashfs-tools/archive/$pkgver.tar.gz")
sha512sums=('133ce437fb8c929933d52cff710b61dd9181f6f8be58250b0d6a59a7bb79a2b350f68f456b06a0e17c469409a71272d586802d570248273ddcd5dad088c00308')
prepare() {
cd $pkgname-$pkgver
sed -i '1,1i#include <sys/sysmacros.h>' $pkgname/mksquashfs.c $pkgname/unsquashfs.c
}
build() {
cd $pkgname-$pkgver/$pkgname
make \
GZIP_SUPPORT=1 \
XZ_SUPPORT=1 \
LZO_SUPPORT=1 \
LZMA_XZ_SUPPORT=1 \
LZ4_SUPPORT=1 \
XATTR_SUPPORT=1
}
package() {
cd $pkgname-$pkgver/$pkgname
make install INSTALL_DIR=$pkgdir/usr/bin
install -Dm644 ../COPYING -t $pkgdir/usr/share/licenses/$pkgname
}