wok annotate squashfs/receipt @ rev 6485

audacious-plugins: break a dependency loop
author Antoine Bodin <gokhlayeh@mailoo.org>
date Thu Sep 30 21:14:47 2010 +0200 (2010-09-30)
parents f5b04145b323
children 7e74961dc953
rev   line source
pascal@236 1 # SliTaz package receipt.
pascal@236 2
pascal@236 3 PACKAGE="squashfs"
slaxemulator@6372 4 VERSION="4.1"
pascal@236 5 CATEGORY="base-system"
pascal@909 6 SHORT_DESC="Linux squashfs userland tools."
pascal@236 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@236 8 WEB_SITE="http://$PACKAGE.sourceforge.net/"
pascal@2991 9 TARBALL="squashfs$VERSION.tar.gz"
pascal@236 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@2992 11 DEPENDS="zlib linux-squashfs"
slaxemulator@6372 12 BUILD_DEPENDS="zlib-dev attr-dev liblzma-dev"
pascal@1834 13 PROVIDE="cromfs-or-squashfs"
pascal@1930 14
pascal@236 15 # Rules to configure and make the package.
pascal@236 16 compile_rules()
pascal@236 17 {
pascal@2991 18 mv ${PACKAGE}${VERSION} $src 2> /dev/null
pascal@236 19
pascal@2991 20 cd $src/squashfs-tools
slaxemulator@6372 21 sed -i 's|#XZ_SUPPORT = 1|XZ_SUPPORT = 1|g' Makefile
pascal@2991 22 mkdir -p ../_pkg/usr/sbin ../_pkg/sbin
pascal@1452 23 make || return 1
pascal@2991 24 cp mksquashfs ../_pkg/usr/sbin
pascal@2991 25 cp unsquashfs ../_pkg/sbin
pascal@236 26 }
pascal@236 27
pascal@236 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@236 29 genpkg_rules()
pascal@236 30 {
pascal@1543 31 cp -a $_pkg/usr $_pkg/sbin $fs
pascal@236 32 }