wok-next view xdelta/receipt @ rev 20806

I. node update: security -> https://nodejs.org/en/blog/vulnerability/june-2018-security-releases/ 9.5.0 -> 9.11.2 II. add checksum
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 13 08:26:54 2018 +0000 (2018-06-13)
parents eb8067417980
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="xdelta"
4 VERSION="3.1.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Binary diff, VCDIFF/RFC 3284 delta compression."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE$VERSION.tar.gz"
10 WEB_SITE="http://xdelta.org/"
11 WGET_URL="https://github.com/jmacd/xdelta/archive/v$VERSION.tar.gz"
13 BUILD_DEPENDS="automake autoconf libtool"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/xdelta3
19 autoreconf -fi
20 ./configure --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }