wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/exempi/receipt	Thu Aug 07 00:46:10 2014 -0300
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="exempi"
     1.7 +VERSION="2.1.1"
     1.8 +CATEGORY="utilities"
     1.9 +LICENSE="GPL3"
    1.10 +SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)."
    1.11 +MAINTAINER="yuripourre@gmail.com"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.13 +WEB_SITE="http://libopenraw.freedesktop.org/wiki/Exempi/"
    1.14 +WGET_URL="http://libopenraw.freedesktop.org/download/$TARBALL"
    1.15 +
    1.16 +DEPENDS="expat"
    1.17 +BUILD_DEPENDS="expat-dev libboost-dev libboost-test-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure              \
    1.23 +		--prefix=/usr    \
    1.24 +		--enable-static-no \
    1.25 +		$CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$DESTDIR install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib
    1.34 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.35 +}