iglunix/pkgs/squashfs-tools/build.sh
2021-04-08 11:08:43 +01:00

24 lines
392 B
Bash

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
}