wok view squashfs/receipt @ rev 17942

Up squashfs (4.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 15 14:25:34 2015 +0200 (2015-04-15)
parents b753ad1e6bdd
children 26fa5f5578f3
line source
1 # SliTaz package receipt.
3 PACKAGE="squashfs"
4 VERSION="4.3"
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 lz4-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/squashfs-tools
20 sed -i 's|^#XZ_SUPPORT = 1|XZ_SUPPORT = 1|g' Makefile
21 sed -i 's|^#LZO_SUPPORT = 1|LZO_SUPPORT = 1|g' Makefile
22 sed -i 's|^#LZ4_SUPPORT = 1|LZ4_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 }