Adedd squashfs-tools

This commit is contained in:
Ella-0 2021-04-08 11:08:43 +01:00
parent a55e2671b8
commit 8d8cbc593c

View file

@ -0,0 +1,24 @@
pkgname=squashfs-tools
pkgver=master
fetch() {
curl -L "https://github.com/plougher/squashfs-tools/archive/refs/heads/master.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
}
build() {
cd $pkgname-$pkgver
cd $pkgname
gmake
}
package() {
cd $pkgname-$pkgver
cd $pkgname
gmake install INSTALL_DIR=$pkgdir/usr/bin
}
license() {
cd $pkgname-$pkgver
cat COPYING
}