wok-current view flam3/receipt @ rev 20921

updated flam3 and flam3-dev (3.0 -> 3.1.1)
author Hans-G?nter Theisgen
date Fri Mar 01 17:44:13 2019 +0100 (2019-03-01)
parents a78610b2eb47
children a26791e2ea4a
line source
1 # SliTaz package receipt.
3 PACKAGE="flam3"
4 VERSION="3.1.1"
5 CATEGORY="graphics"
6 SHORT_DESC="Tools to create and display fractal flames: algorithmically generated images and animations."
7 MAINTAINER="gokhlayeh@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://flam3.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/scottdraves/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="expat libjpeg libpng libxml2"
15 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make -j 1 $MAKEFLAGS &&
27 make -j 1 DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share
34 cp -a $install/usr/bin $fs/usr/
35 cp -a $install/usr/share/flam3 $fs/usr/share/
36 }