mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
19 lines
386 B
Plaintext
Executable File
19 lines
386 B
Plaintext
Executable File
# description : Python 2 bindings to the GObject class from GLib
|
|
# depends : python2
|
|
|
|
name=python2-gobject2
|
|
version=2.28.7
|
|
release=1
|
|
source="https://ftp.gnome.org/pub/gnome/sources/pygobject/${version%.*}/pygobject-$version.tar.xz"
|
|
|
|
build() {
|
|
cd pygobject-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-introspection \
|
|
PYTHON=/usr/bin/python2
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|