wok view flam3/receipt @ rev 7315

Added openal to openal-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 17 17:45:48 2010 +0000 (2010-11-17)
parents
children 77c15d20dc48
line source
1 # SliTaz package receipt.
3 PACKAGE="flam3"
4 VERSION="2.7.18"
5 CATEGORY="graphics"
6 SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations"
7 MAINTAINER="gokhlayeh@slitaz.org"
8 DEPENDS="expat libjpeg libpng libxml2"
9 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://flam3.com/"
12 WGET_URL="http://flam3.com/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make -j 4 && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $_pkg/usr/bin $fs/usr/
31 cp -a $_pkg/usr/share/flam3 $fs/usr/share/
32 }