wok view flam3/receipt @ rev 9374

Up: freeradius to 2.1.10.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 24 20:58:11 2011 +0000 (2011-03-24)
parents 83c8a01f7dc5
children 8e4c74abdf74
line source
1 # SliTaz package receipt.
3 PACKAGE="flam3"
4 VERSION="3.0"
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.googlecode.com/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/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 }