wok-next view exempi/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="exempi"
4 VERSION="2.5.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/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/exempi.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://libopenraw.freedesktop.org/download/$TARBALL"
15 BUILD_DEPENDS="boost-dev boost-unit-test-framework expat-dev zlib-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules()
19 {
20 ./configure \
21 --disable-static \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 exempi)
32 copy @std
33 DEPENDS="expat zlib"
34 ;;
35 *-dev)
36 copy @dev
37 DEPENDS="exempi expat-dev zlib-dev"
38 ;;
39 esac
40 }