wok view squashfs/receipt @ rev 16456

squashfs: add lzo support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 19 11:41:39 2014 +0000 (2014-04-19)
parents 051931e905b0
children 432d327b4c99
line source
1 # SliTaz package receipt.
3 PACKAGE="squashfs"
4 VERSION="4.2"
5 CATEGORY="base-system"
6 SHORT_DESC="Linux squashfs userland tools."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
10 TARBALL="squashfs$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="zlib liblzma linux-squashfs lzo"
14 BUILD_DEPENDS="zlib-dev attr-dev liblzma-dev lzo-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cd $src/squashfs-tools
21 sed -i 's|#XZ_SUPPORT = 1|XZ_SUPPORT = 1|g' Makefile
22 sed -i 's|#LZO_SUPPORT = 1|LZO_SUPPORT = 1|g' Makefile
23 mkdir -p $DESTDIR/usr/sbin $DESTDIR/sbin
24 make || return 1
25 cp -a mksquashfs $DESTDIR/usr/sbin
26 cp -a unsquashfs $DESTDIR/sbin
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/usr $install/sbin $fs
33 }