wok annotate 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
rev   line source
gokhlayeh@6998 1 # SliTaz package receipt.
gokhlayeh@6998 2
gokhlayeh@6998 3 PACKAGE="flam3"
slaxemulator@7384 4 VERSION="3.0"
gokhlayeh@6998 5 CATEGORY="graphics"
gokhlayeh@6998 6 SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations"
gokhlayeh@6998 7 MAINTAINER="gokhlayeh@slitaz.org"
gokhlayeh@6998 8 DEPENDS="expat libjpeg libpng libxml2"
gokhlayeh@6998 9 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev"
gokhlayeh@6998 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@6998 11 WEB_SITE="http://flam3.com/"
slaxemulator@7384 12 WGET_URL="http://flam3.googlecode.com/files/$TARBALL"
gokhlayeh@6998 13
gokhlayeh@6998 14 # Rules to configure and make the package.
gokhlayeh@6998 15 compile_rules()
gokhlayeh@6998 16 {
pascal@7388 17 cd $src/src
gokhlayeh@6998 18 ./configure \
gokhlayeh@6998 19 --prefix=/usr \
gokhlayeh@6998 20 --infodir=/usr/share/info \
gokhlayeh@6998 21 --mandir=/usr/share/man \
gokhlayeh@6998 22 $CONFIGURE_ARGS &&
gokhlayeh@11574 23 make $MAKEFLAGS && make DESTDIR=$PWD/../_pkg install
gokhlayeh@6998 24 }
gokhlayeh@6998 25
gokhlayeh@6998 26 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6998 27 genpkg_rules()
gokhlayeh@6998 28 {
gokhlayeh@6998 29 mkdir -p $fs/usr/share
gokhlayeh@6998 30 cp -a $_pkg/usr/bin $fs/usr/
gokhlayeh@6998 31 cp -a $_pkg/usr/share/flam3 $fs/usr/share/
gokhlayeh@6998 32 }
gokhlayeh@6998 33
gokhlayeh@6998 34