wok view flam3/receipt @ rev 15324

Up tcpdump (4.4.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 21:57:38 2013 +0000 (2013-09-27)
parents 582724377a48
children fcdd50638150
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 $MAKEFLAGS && 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 }