wok-next view exempi/receipt @ rev 20333

Up bmpanel2, urxvt, usbip
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Nov 15 16:27:09 2017 +0200 (2017-11-15)
parents 906669ffa497
children ab7c63b80420
line source
1 # SliTaz package receipt v2.
3 PACKAGE="exempi"
4 VERSION="2.4.2"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="An implementation of XMP (Adobe's Extensible Metadata Platform)"
8 MAINTAINER="yuripourre@gmail.com"
9 WEB_SITE="https://libopenraw.freedesktop.org/wiki/Exempi/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://libopenraw.freedesktop.org/download/$TARBALL"
14 BUILD_DEPENDS="expat-dev zlib-dev libboost-dev libboost-unit-test-framework"
15 SPLIT="exempi-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --disable-static \
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 case $PACKAGE in
31 exempi) copy @std; DEPENDS="expat zlib";;
32 *-dev) copy @dev; DEPENDS="expat-dev zlib-dev";;
33 esac
34 }