wok annotate xz/receipt @ rev 7615

Added xorg-dev-proto to xorg-server-dev depends. Needs xorg-dev-proto for pkg-config to work with xorg-server-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 11 21:51:57 2010 +0000 (2010-12-11)
parents 5b636b13a396
children 79ebfa5003d6
rev   line source
pascal@4151 1 # SliTaz package receipt.
pascal@4151 2
pascal@4151 3 PACKAGE="xz"
slaxemulator@6962 4 VERSION="5.0.0"
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 }