23 lines
519 B
Plaintext
23 lines
519 B
Plaintext
|
# Description: Python bindings for GObject
|
||
|
# URL: https://wiki.gnome.org/Projects/PyGObject
|
||
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
||
|
# Packager: Simone Rota, sip at varlock dot com
|
||
|
# Depends on: gtk3 python
|
||
|
|
||
|
name=pygobject
|
||
|
version=3.14.0
|
||
|
release=1
|
||
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version::4}/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-introspection
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm -rf $PKG/usr/share/gtk-doc
|
||
|
}
|