18 lines
465 B
Plaintext
Raw Normal View History

2006-10-24 15:36:15 -05:00
# Description: SquashFS tools
# URL: http://squashfs.sourceforge.net/
# Maintainer: Matt Housh, jaeger at morpheus dot net
2012-04-03 12:17:05 -05:00
# Depends on: xz
2006-10-24 15:36:15 -05:00
name=squashfs-tools
2012-04-02 08:40:07 -05:00
version=4.2
2012-04-03 12:17:05 -05:00
release=2
source=(http://download.sourceforge.net/squashfs/squashfs${version}.tar.gz)
2006-10-24 15:36:15 -05:00
build() {
cd squashfs${version}/$name
2012-04-03 12:17:05 -05:00
sed -i -e 's/^#\(XZ_SUPPORT = 1\)/\1/' Makefile
2006-10-24 15:36:15 -05:00
make
install -D -m 0755 mksquashfs ${PKG}/sbin/mksquashfs
install -D -m 0755 unsquashfs ${PKG}/sbin/unsquashfs
}