wok view gegl/receipt @ rev 3725

Update: xorg-xauth (DEPENDS)
author Matthew Sheets <rcx@zoominternet.net>
date Tue Jul 21 17:04:42 2009 +0000 (2009-07-21)
parents efce84effd16
children fb4d44366d13
line source
1 # SliTaz package receipt.
3 PACKAGE="gegl"
4 VERSION="0.0.22"
5 CATEGORY="system-tools"
6 SHORT_DESC="Generic Graphics Library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="babl expat gtk+ jpeg libsdl xorg-libX11 xorg-libXau \
9 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes \
10 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage bzlib ffmpeg"
11 BUILD_DEPENDS="babl-dev libsdl-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
33 }