wok view pygobject/receipt @ rev 8375

Add openldap-dev to nss_ldap build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Feb 04 02:49:31 2011 +0000 (2011-02-04)
parents d0fa681cee8d
children 4870a1e508a5
line source
1 # SliTaz package receipt.
3 PACKAGE="pygobject"
4 VERSION="2.26.0"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for the GObject library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="python pycairo glib libffi libgio gobject-introspection"
9 BUILD_DEPENDS="python python-dev pkg-config glib-dev libgio-dev pycairo-dev cairo-dev libffi-dev gobject-introspection-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/${VERSION%.*}/$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 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/')
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/$PYTHON_LIB $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }