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 }