wok-next rev 20114
Up xdelta3 (3.1.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Oct 30 10:18:38 2017 +0100 (2017-10-30) |
parents | cc633e7b15aa |
children | 1a2a5874632b |
files | gqview/receipt xdelta/receipt |
line diff
1.1 --- a/gqview/receipt Mon Oct 30 09:29:31 2017 +0100 1.2 +++ b/gqview/receipt Mon Oct 30 10:18:38 2017 +0100 1.3 @@ -11,12 +11,11 @@ 1.4 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.5 1.6 DEPENDS="gtk+ xorg-libXdamage" 1.7 -BUILD_DEPENDS="pkg-config gtk+ gtk+-dev" 1.8 +BUILD_DEPENDS="pkg-config gtk+ gtk+-dev gettext-tools" 1.9 1.10 # Rules to configure and make the package. 1.11 compile_rules() 1.12 { 1.13 - cd $src 1.14 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lm" 1.15 ./configure --prefix=/usr --mandir=/usr/share/man \ 1.16 $CONFIGURE_ARGS &&
2.1 --- a/xdelta/receipt Mon Oct 30 09:29:31 2017 +0100 2.2 +++ b/xdelta/receipt Mon Oct 30 10:18:38 2017 +0100 2.3 @@ -1,26 +1,31 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="xdelta" 2.7 -VERSION="3.0.0" 2.8 +VERSION="3.1.0" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="Binary diff, VCDIFF/RFC 3284 delta compression." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 TARBALL="$PACKAGE$VERSION.tar.gz" 2.14 WEB_SITE="http://xdelta.org/" 2.15 -WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" 2.16 +WGET_URL="https://github.com/jmacd/xdelta/archive/v$VERSION.tar.gz" 2.17 + 2.18 +BUILD_DEPENDS="automake autoconf libtool" 2.19 2.20 # Rules to configure and make the package. 2.21 compile_rules() 2.22 { 2.23 - cd $src 2.24 - make 2.25 + cd $src/xdelta3 2.26 + autoreconf -fi 2.27 + ./configure --prefix=/usr \ 2.28 + $CONFIGURE_ARGS && 2.29 + make && 2.30 + make DESTDIR=$DESTDIR install 2.31 } 2.32 2.33 # Rules to gen a SliTaz package suitable for Tazpkg. 2.34 genpkg_rules() 2.35 { 2.36 - mkdir -p $fs/usr/bin 2.37 - cp -a $src/xdelta3 $fs/usr/bin 2.38 + mkdir -p $fs/usr 2.39 + cp -a $install/usr/bin $fs/usr 2.40 } 2.41 -