wok diff exif/receipt @ rev 20465
fusioninventory-agenti: update deps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 11 13:02:55 2018 +0200 (2018-10-11) |
parents | 635dfef9f1ac |
children | d02377422e45 |
line diff
1.1 --- a/exif/receipt Fri Mar 04 10:33:16 2011 +0000 1.2 +++ b/exif/receipt Thu Oct 11 13:02:55 2018 +0200 1.3 @@ -5,30 +5,31 @@ 1.4 CATEGORY="graphics" 1.5 SHORT_DESC="Read exif data from images" 1.6 MAINTAINER="sygne@ombres.eu" 1.7 -DEPENDS="libexif popt" 1.8 -BUILD_DEPENDS="libexif libexif-dev popt-dev" 1.9 +LICENSE="LGPL2.1" 1.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.11 WEB_SITE="http://libexif.sourceforge.net/" 1.12 WGET_URL="$SF_MIRROR/libexif/$TARBALL" 1.13 1.14 +DEPENDS="libexif popt" 1.15 +BUILD_DEPENDS="libexif libexif-dev popt-dev" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 cd $src 1.21 ./configure --prefix=/usr --infodir=/usr/share/info \ 1.22 --mandir=/usr/share/man $CONFIGURE_ARGS && \ 1.23 - make && make DESTDIR=$PWD/_pkg install 1.24 + make && make DESTDIR=$DESTDIR install 1.25 } 1.26 1.27 # Rules to gen a SliTaz package suitable for Tazpkg. 1.28 genpkg_rules() 1.29 { 1.30 mkdir -p $fs/usr 1.31 - cp -a $_pkg/usr/bin $fs/usr 1.32 + cp -a $install/usr/bin $fs/usr 1.33 mkdir -p $fs/usr/share/locale 1.34 for LOCALE in de es fr 1.35 do 1.36 - cp -a -r $_pkg/usr/share/locale/$LOCALE $fs/usr/share/locale 1.37 + cp -a -r $install/usr/share/locale/$LOCALE $fs/usr/share/locale 1.38 done 1.39 } 1.40 -