16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
|
# Description: SquashFS tools
|
||
|
# URL: http://squashfs.sourceforge.net/
|
||
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
||
|
|
||
|
name=squashfs-tools
|
||
|
version=3.1-r2
|
||
|
release=1
|
||
|
source=(http://dl.sourceforge.net/squashfs/squashfs${version}.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd squashfs${version}/$name
|
||
|
make
|
||
|
install -D -m 0755 mksquashfs ${PKG}/sbin/mksquashfs
|
||
|
install -D -m 0755 unsquashfs ${PKG}/sbin/unsquashfs
|
||
|
}
|