wok view 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 source
1 # SliTaz package receipt.
3 PACKAGE="exif"
4 VERSION="0.6.20"
5 CATEGORY="graphics"
6 SHORT_DESC="Read exif data from images"
7 MAINTAINER="sygne@ombres.eu"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libexif.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/libexif/$TARBALL"
13 DEPENDS="libexif popt"
14 BUILD_DEPENDS="libexif libexif-dev popt-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 mkdir -p $fs/usr/share/locale
31 for LOCALE in de es fr
32 do
33 cp -a -r $install/usr/share/locale/$LOCALE $fs/usr/share/locale
34 done
35 }