wok view openexr/receipt @ rev 6629

Up: pango to 1.28.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 10 05:12:51 2010 +0000 (2010-10-10)
parents
children d1768332cee0
line source
1 # SliTaz package receipt.
3 PACKAGE="openexr"
4 VERSION="1.6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="openexr library for EXR images"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="zlib ilmbase"
9 BUILD_DEPENDS="zlib zlib-dev ilmbase-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.openexr.org/"
12 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -p1 -i ../stuff/gcc43.patch
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }