wok view pygobject/receipt @ rev 1582

ekiga: depends on libiconv, libunixODBC
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 16 07:39:09 2008 +0000 (2008-10-16)
parents cb884d540a01
children 93b397dc8274
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"
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 }