wok-next diff exiv2/receipt @ rev 4696
Up: gdb (7.0.1)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Jan 02 10:00:50 2010 +0100 (2010-01-02) |
parents | 209255ef5a73 |
children | 6e90579538d6 |
line diff
1.1 --- a/exiv2/receipt Fri Apr 24 07:28:47 2009 +0000 1.2 +++ b/exiv2/receipt Sat Jan 02 10:00:50 2010 +0100 1.3 @@ -1,33 +1,32 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="exiv2" 1.7 -VERSION="0.17.1" 1.8 +VERSION="0.18.2" 1.9 CATEGORY="graphics" 1.10 SHORT_DESC="Exif and Iptc metadata manipulation library and tools" 1.11 MAINTAINER="jozee@slitaz.org" 1.12 DEPENDS="expat zlib" 1.13 BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev" 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 -WEB_SITE="http://www.exiv2.org/" 1.16 +WEB_SITE="http://www.exiv2.org/" 1.17 WGET_URL="$WEB_SITE/$TARBALL" 1.18 1.19 - 1.20 # Rules to configure and make the package. 1.21 compile_rules() 1.22 { 1.23 cd $src 1.24 - ./configure --prefix=/usr 1.25 - make 1.26 + ./configure \ 1.27 + --prefix=/usr \ 1.28 + $CONFIGURE_ARGS && 1.29 + make && 1.30 make DESTDIR=$PWD/_pkg install 1.31 - 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 genpkg_rules() 1.36 { 1.37 - mkdir -p $fs/usr/bin 1.38 + mkdir -p $fs/usr/bin 1.39 mkdir -p $fs/usr/lib 1.40 cp -a $_pkg/usr/bin $fs/usr 1.41 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.42 - 1.43 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.44 }