wok view exiv2/receipt @ rev 16269

ARM: add obconf, lxde, viewnior, exiv2
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 05 21:37:01 2014 +0200 (2014-04-05)
parents fcdd50638150
children cd48039e6658
line source
1 # SliTaz package receipt.
3 PACKAGE="exiv2"
4 VERSION="0.21"
5 CATEGORY="graphics"
6 SHORT_DESC="Exif and Iptc metadata manipulation library and tools"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.exiv2.org/"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="expat zlib gcc-lib-base"
15 BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }