2020-06-11 14:34:51 -05:00
|
|
|
# Description: Tools to create and extract SquashFS filesystems
|
|
|
|
# URL: https://github.com/plougher/squashfs-tools
|
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
2019-07-30 11:04:00 -05:00
|
|
|
# Depends on: gzip lzo xz
|
|
|
|
|
2006-10-24 15:36:15 -05:00
|
|
|
name=squashfs-tools
|
2019-09-02 09:03:51 -05:00
|
|
|
version=4.4
|
|
|
|
release=1
|
2020-06-11 14:34:51 -05:00
|
|
|
source=(https://github.com/plougher/$name/archive/$version/$name-$version.tar.gz)
|
2006-10-24 15:36:15 -05:00
|
|
|
|
|
|
|
build() {
|
2020-06-11 14:34:51 -05:00
|
|
|
cd $name-$version/$name
|
2019-07-30 11:04:00 -05:00
|
|
|
make GZIP_SUPPORT=1 LZO_SUPPORT=1 XZ_SUPPORT=1
|
|
|
|
make install INSTALL_DIR=$PKG/sbin
|
2006-10-24 15:36:15 -05:00
|
|
|
}
|