wok view gegl/receipt @ rev 2516

g*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 16 22:01:20 2009 +0000 (2009-03-16)
parents 987853b8719d
children 9984ea8fb822
line source
1 # SliTaz package receipt.
3 PACKAGE="gegl"
4 VERSION="0.0.20"
5 CATEGORY="system-tools"
6 SHORT_DESC="Generic Graphics Library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="babl expat gtk+ jpeg libSDL libiconv xorg-libX11 xorg-libXau \
9 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes \
10 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
11 BUILD_DEPENDS="babl-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://gegl.org/"
14 WGET_URL="ftp://ftp.gimp.org/pub/gegl/0.0/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --disable-docs \
22 $CONFIGURE_ARGS && \
23 make && 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/lib/gegl
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/lib/gegl-0.0/*.so* $fs/usr/lib/gegl
34 }