wok annotate xdelta/receipt @ rev 9846

Fixed apache-mod-wsgi for tazwok. Just need to cd $src before compiling.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 15 18:30:30 2011 +0000 (2011-05-15)
parents 7c1d1ee26141
children 1150292a1c4b
rev   line source
pascal@2368 1 # SliTaz package receipt.
pascal@2368 2
pascal@2368 3 PACKAGE="xdelta"
slaxemulator@6363 4 VERSION="3.0z"
pascal@2368 5 CATEGORY="system-tools"
pascal@2368 6 SHORT_DESC="Binary diff, VCDIFF/RFC 3284 delta compression."
pascal@2368 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2368 8 TARBALL="$PACKAGE$VERSION.tar.gz"
pascal@2368 9 WEB_SITE="http://xdelta.org/"
pascal@2368 10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
pascal@2368 11
pascal@2368 12 # Rules to configure and make the package.
pascal@2368 13 compile_rules()
pascal@2368 14 {
pascal@8274 15 [ -d $PACKAGE$VERSION ] && mv $PACKAGE$VERSION $PACKAGE-$VERSION
pascal@2368 16 cd $src
pascal@2368 17 make
pascal@2368 18 }
pascal@2368 19
pascal@2368 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2368 21 genpkg_rules()
pascal@2368 22 {
pascal@2368 23 mkdir -p $fs/usr/bin
pascal@2368 24 cp -a $src/xdelta3 $fs/usr/bin
pascal@2368 25 }
pascal@2368 26