wok view gegl/receipt @ rev 1745

Add php-dev
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 22 22:43:55 2008 +0000 (2008-11-22)
parents
children 987853b8719d
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"
9 BUILD_DEPENDS="babl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://gegl.org/"
12 WGET_URL="ftp://ftp.gimp.org/pub/gegl/0.0/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --disable-docs \
20 $CONFIGURE_ARGS && \
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/gegl
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 cp -a $_pkg/usr/lib/gegl-0.0/*.so* $fs/usr/lib/gegl
32 }