wok view gegl/receipt @ rev 13034

Add compiler & vnc tags
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 12 20:04:51 2012 +0200 (2012-06-12)
parents 26409685bf43
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="gegl"
4 VERSION="0.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Generic Graphics Library"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://gegl.org/"
10 WGET_URL="ftp://ftp.gimp.org/pub/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="babl expat gtk+ jpeg xorg-libX11"
13 BUILD_DEPENDS="babl-dev expat-dev gtk+-dev xorg-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 # Keep gegl light so we can make smaller gimp LiveCD flavors
20 ./configure \
21 --disable-docs \
22 --without-sdl \
23 --without-librsvg \
24 --without-graphviz \
25 --without-lua \
26 --without-libavformat \
27 --without-libv4l \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 cp -a $install/usr/lib/gegl-* $fs/usr/lib
39 rm $fs/usr/lib/gegl-*/*.*a
40 }