wok view exempi/receipt @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents 0a7dc544105e
children a78610b2eb47
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.gz"
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 }