wok view exif/receipt @ rev 4914

awstats: fix apache conf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 13 23:13:57 2010 +0100 (2010-02-13)
parents
children e2dd4c43c979
line source
1 # SliTaz package receipt.
3 PACKAGE="exif"
4 VERSION="0.6.17"
5 CATEGORY="graphics"
6 SHORT_DESC="Read exif data from images"
7 MAINTAINER="sygne@ombres.eu"
8 DEPENDS="libexif popt"
9 BUILD_DEPENDS="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 }