wok view ilmbase/receipt @ rev 9124

hal-cups-utils: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 05 18:36:40 2011 +0100 (2011-03-05)
parents
children 6836da13af2a
line source
1 # SliTaz package receipt.
3 PACKAGE="ilmbase"
4 VERSION="1.0.1"
5 CATEGORY="x-window"
6 SHORT_DESC="IlmThread is a thread abstraction library for use with OpenEXR"
7 MAINTAINER="slaxemulator@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.openexr.org"
10 WGET_URL="http://savannah.nongnu.org/download/openexr/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }