wok view pygobject/receipt @ rev 2670

Fix: php BUILD_DEPENDS
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Apr 20 15:47:52 2009 +0200 (2009-04-20)
parents 52dc4b48ed81
children fbf64ec0cf6d
line source
1 # SliTaz package receipt.
3 PACKAGE="pygobject"
4 VERSION="2.14.1"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for the GObject library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="python glib"
9 BUILD_DEPENDS="python python-dev pkg-config glib glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.pygtk.org/docs/pygobject/index.html"
12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.14/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 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
28 cp -a $_pkg/usr/lib/python2.5 $fs/usr/lib
29 }