wok view xdelta/receipt @ rev 9897

ruby-entreprise: fix rm headers (we have i686 now not i486)
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 17 11:43:54 2011 +0200 (2011-05-17)
parents 7c1d1ee26141
children 1150292a1c4b
line source
1 # SliTaz package receipt.
3 PACKAGE="xdelta"
4 VERSION="3.0z"
5 CATEGORY="system-tools"
6 SHORT_DESC="Binary diff, VCDIFF/RFC 3284 delta compression."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE$VERSION.tar.gz"
9 WEB_SITE="http://xdelta.org/"
10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 [ -d $PACKAGE$VERSION ] && mv $PACKAGE$VERSION $PACKAGE-$VERSION
16 cd $src
17 make
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/bin
24 cp -a $src/xdelta3 $fs/usr/bin
25 }