blob: 65a3a153343f3563ae2f67f57e6e03e69c0f94d9 (
plain)
1 # Description: Python bindings for GObject
2 # URL: http://www.pygtk.org
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Packager: Simone Rota, sip at varlock dot com
5 # Depends on: gtk python
6
7 name=pygobject
8 version=2.28.6
9 release=1
10 source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version::4}/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr --disable-introspection
16 make
17 make DESTDIR=$PKG install
18
19 rm -rf $PKG/usr/share/gtk-doc
20 }
|