19 lines
499 B
Plaintext
19 lines
499 B
Plaintext
# Description: Squashfs is a compressed read-only filesystem for Linux.
|
|
# URL: http://squashfs.sourceforge.net/
|
|
# Maintainer: phillip at lougher.demon.co.uk
|
|
# Packager: milisarge@gmail.com
|
|
# Depends on: zlib lzo xz lz4
|
|
|
|
name=squashfs
|
|
version=4.3
|
|
release=2
|
|
|
|
source=(http://downloads.sourceforge.net/sourceforge/$name/$name$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name$version/squashfs-tools
|
|
make XZ_SUPPORT=1 LZO_SUPPORT=1 LZMA_XZ_SUPPORT=1 LZA_SUPPORT=1
|
|
mkdir -p $PKG/bin
|
|
make INSTALL_DIR=$PKG/bin install
|
|
}
|