wok annotate xz/receipt @ rev 6899
Up: libsdl-gfx to 2.0.22.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Oct 21 10:52:43 2010 +0000 (2010-10-21) |
parents | 9d594cfaf7c6 |
children | d22789fb1e92 |
rev | line source |
---|---|
pascal@4151 | 1 # SliTaz package receipt. |
pascal@4151 | 2 |
pascal@4151 | 3 PACKAGE="xz" |
pascal@4151 | 4 VERSION="4.999.9beta" |
pascal@4151 | 5 CATEGORY="base-system" |
pascal@4151 | 6 SHORT_DESC="General-purpose data compressor with a high compression ratio." |
pascal@4151 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@4151 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@5008 | 9 DEPENDS="liblzma" |
pascal@4151 | 10 WEB_SITE="http://tukaani.org/xz" |
pascal@4151 | 11 WGET_URL="$WEB_SITE/$TARBALL" |
pascal@4862 | 12 PROVIDE="lzma" |
pascal@4151 | 13 |
pascal@4151 | 14 # Rules to configure and make the package. |
pascal@4151 | 15 compile_rules() |
pascal@4151 | 16 { |
pascal@4151 | 17 cd $src |
pascal@4151 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@4151 | 19 --mandir=/usr/share/man \ |
pascal@4151 | 20 --enable-dynamic=yes --enable-small \ |
pascal@4151 | 21 $CONFIGURE_ARGS && |
pascal@4151 | 22 make && |
pascal@4151 | 23 make DESTDIR=$PWD/_pkg install |
pascal@4151 | 24 } |
pascal@4151 | 25 |
pascal@4151 | 26 |
pascal@4151 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4151 | 28 genpkg_rules() |
pascal@4151 | 29 { |
pascal@4870 | 30 mkdir -p $fs/usr/bin |
pascal@4151 | 31 cp -a $_pkg/usr/bin/xz $fs/usr/bin |
pascal@4861 | 32 cp stuff/lzma $fs/usr/bin |
pascal@4151 | 33 } |