wok view exempi/receipt @ rev 16980

Add exempi and exempi-dev
author Yuri Pourre <yuripourre@gmail.com>
date Thu Aug 07 00:46:10 2014 -0300 (2014-08-07)
parents
children 906669ffa497
line source
1 # SliTaz package receipt.
3 PACKAGE="exempi"
4 VERSION="2.1.1"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)."
8 MAINTAINER="yuripourre@gmail.com"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://libopenraw.freedesktop.org/wiki/Exempi/"
11 WGET_URL="http://libopenraw.freedesktop.org/download/$TARBALL"
13 DEPENDS="expat"
14 BUILD_DEPENDS="expat-dev libboost-dev libboost-test-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --enable-static-no \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }