wok annotate xdelta/receipt @ rev 4293

firefox-dev: fix version hack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 20:20:32 2009 +0200 (2009-09-26)
parents
children 45b83b1e2722
rev   line source
pascal@2368 1 # SliTaz package receipt.
pascal@2368 2
pascal@2368 3 PACKAGE="xdelta"
pascal@2368 4 VERSION="3.0u"
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@2368 15 mv $PACKAGE$VERSION $PACKAGE-$VERSION 2> /dev/null
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