# HG changeset patch # User Pascal Bellard # Date 1397907699 0 # Node ID b753ad1e6bdde904b9ad97091bfd57930d6a8a61 # Parent 1d89d659f084e301da1455b6eab61d0599aafe7a squashfs: add lzo support diff -r 1d89d659f084 -r b753ad1e6bdd squashfs/receipt --- a/squashfs/receipt Sat Apr 19 13:55:44 2014 +0300 +++ b/squashfs/receipt Sat Apr 19 11:41:39 2014 +0000 @@ -10,8 +10,8 @@ TARBALL="squashfs$VERSION.tar.gz" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -DEPENDS="zlib liblzma linux-squashfs" -BUILD_DEPENDS="zlib-dev attr-dev liblzma-dev" +DEPENDS="zlib liblzma linux-squashfs lzo" +BUILD_DEPENDS="zlib-dev attr-dev liblzma-dev lzo-dev" # Rules to configure and make the package. compile_rules() @@ -19,6 +19,7 @@ cd $src cd $src/squashfs-tools sed -i 's|#XZ_SUPPORT = 1|XZ_SUPPORT = 1|g' Makefile + sed -i 's|#LZO_SUPPORT = 1|LZO_SUPPORT = 1|g' Makefile mkdir -p $DESTDIR/usr/sbin $DESTDIR/sbin make || return 1 cp -a mksquashfs $DESTDIR/usr/sbin