wok view pygobject/receipt @ rev 4953

UP ntfs-3g and ntfs-3g-dev
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 17 09:45:16 2010 +0000 (2010-02-17)
parents fbf64ec0cf6d
children f3327707164a
line source
1 # SliTaz package receipt.
3 PACKAGE="pygobject"
4 VERSION="2.20.0"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for the GObject library"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="python glib libffi"
9 BUILD_DEPENDS="python python-dev pkg-config glib glib-dev libffi-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.20/$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 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }