blob: fd6f8a1e47ab8fce3faa8e8b40d55c266ea90c2e (
plain)
1 # Description: Python bindings for GObject (legacy)
2 # URL: https://wiki.gnome.org/Projects/PyGObject
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: glib
5
6 name=python-gobject-compat
7 version=2.28.7
8 release=1
9 source=(https://download.gnome.org/sources/pygobject/${version::4}/pygobject-$version.tar.xz)
10
11 build() {
12 cd pygobject-$version
13
14 ./configure --prefix=/usr --disable-introspection
15 sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
16 make
17 make DESTDIR=$PKG install
18 }
|