blob: 58a421d0b0caf80044b510f82172fc51842afcb5 (
plain)
1 # Description: Tools to create and extract SquashFS filesystems
2 # URL: https://github.com/plougher/squashfs-tools
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: gzip lzo xz
5
6 name=squashfs-tools
7 version=4.4
8 release=1
9 source=(https://github.com/plougher/$name/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version/$name
13 make GZIP_SUPPORT=1 LZO_SUPPORT=1 XZ_SUPPORT=1
14 make install INSTALL_DIR=$PKG/sbin
15 }
|