wok-next annotate xdelta/receipt @ rev 15791
Add openvpn-down-root (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jan 16 11:04:41 2014 +0000 (2014-01-16) |
parents | 1150292a1c4b |
children | b630bd498153 |
rev | line source |
---|---|
pascal@2368 | 1 # SliTaz package receipt. |
pascal@2368 | 2 |
pascal@2368 | 3 PACKAGE="xdelta" |
slaxemulator@11138 | 4 VERSION="3.0.0" |
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@15579 | 8 LICENSE="GPL2" |
pascal@2368 | 9 TARBALL="$PACKAGE$VERSION.tar.gz" |
pascal@2368 | 10 WEB_SITE="http://xdelta.org/" |
pascal@2368 | 11 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" |
pascal@2368 | 12 |
pascal@2368 | 13 # Rules to configure and make the package. |
pascal@2368 | 14 compile_rules() |
pascal@2368 | 15 { |
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 |