mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 02:20:05 +00:00
19 lines
380 B
Plaintext
Executable File
19 lines
380 B
Plaintext
Executable File
# description : Python3 bindings for PyGObject3
|
|
# depends : python3-cairo gobject-introspection
|
|
|
|
name=python3-gobject3
|
|
version=3.42.0
|
|
release=1
|
|
source="https://ftp.gnome.org/pub/gnome/sources/pygobject/${version%.*}/pygobject-$version.tar.xz"
|
|
|
|
build() {
|
|
cd pygobject-$version
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
meson --prefix=/usr -Dpython=python3 ..
|
|
ninja
|
|
DESTDIR=$PKG ninja install
|
|
}
|