wok view exif/receipt @ rev 14924

Up: firefox-langpack-zh_TW (17.0.7esr)
author Richard Dunbar <mojo@slitaz.org>
date Tue Aug 06 01:30:32 2013 +0000 (2013-08-06)
parents e2dd4c43c979
children fcdd50638150
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 DEPENDS="libexif popt"
9 BUILD_DEPENDS="libexif libexif-dev popt-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://libexif.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/libexif/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS && \
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 mkdir -p $fs/usr/share/locale
29 for LOCALE in de es fr
30 do
31 cp -a -r $_pkg/usr/share/locale/$LOCALE $fs/usr/share/locale
32 done
33 }