wok view glib/receipt @ rev 1503

Up libgio (2.16.5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 15:59:42 2008 +0000 (2008-10-05)
parents 48b017df5658
children 97b0cb0f1f38
line source
1 # SliTaz package receipt.
3 PACKAGE="glib"
4 VERSION="2.16.5"
5 CATEGORY="x-window"
6 SHORT_DESC="C routines."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="cairo-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gtk.org/"
11 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/glib/2.16/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --sysconfdir=/etc \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 # split libgio
33 rm $fs/usr/lib/libgio*
34 # Cook all packages based on glib
35 for i in $(cd $WOK; grep -l '^WANTED="glib"$' */receipt)
36 do
37 echo tazwok cook ${i%/receipt}
38 done
39 }