wok-current 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 | ca42e48be81e |
children | 906669ffa497 |
files | exempi-dev/receipt exempi/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/exempi-dev/receipt Thu Aug 07 00:46:10 2014 -0300 1.3 @@ -0,0 +1,20 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="exempi-dev" 1.7 +VERSION="2.1.1" 1.8 +CATEGORY="libdevel" 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 +WEB_SITE="http://libopenraw.freedesktop.org/wiki/Exempi/" 1.13 +WANTED="exempi" 1.14 +DEPENDS="exempi" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr/lib $fs/usr/include 1.20 + cp -a $install/usr/lib/*.la $fs/usr/lib 1.21 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.22 + cp -a $install/usr/include/* $fs/usr/include 1.23 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/exempi/receipt Thu Aug 07 00:46:10 2014 -0300 2.3 @@ -0,0 +1,32 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="exempi" 2.7 +VERSION="2.1.1" 2.8 +CATEGORY="utilities" 2.9 +LICENSE="GPL3" 2.10 +SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)." 2.11 +MAINTAINER="yuripourre@gmail.com" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WEB_SITE="http://libopenraw.freedesktop.org/wiki/Exempi/" 2.14 +WGET_URL="http://libopenraw.freedesktop.org/download/$TARBALL" 2.15 + 2.16 +DEPENDS="expat" 2.17 +BUILD_DEPENDS="expat-dev libboost-dev libboost-test-dev" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + ./configure \ 2.23 + --prefix=/usr \ 2.24 + --enable-static-no \ 2.25 + $CONFIGURE_ARGS && 2.26 + make && 2.27 + make DESTDIR=$DESTDIR install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr/lib 2.34 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.35 +}