wok view pygobject/receipt @ rev 6353

Up: libexif, libexif-dev to 0.6.19.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Sep 20 22:25:37 2010 +0000 (2010-09-20)
parents 734283599021
children 5921dc28d8c6
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 libgio"
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 }