wok view exiv2/receipt @ rev 3442

slitaz-dev-tools: fix typo
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jun 14 02:47:03 2009 +0200 (2009-06-14)
parents
children ec142b71c3e7
line source
1 # SliTaz package receipt.
3 PACKAGE="exiv2"
4 VERSION="0.17.1"
5 CATEGORY="graphics"
6 SHORT_DESC="Exif and Iptc metadata manipulation library and tools"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="expat zlib"
9 BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.exiv2.org/"
12 WGET_URL="$WEB_SITE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr
20 make
21 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }