mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-20 04:13:18 +00:00
22 lines
492 B
Plaintext
Executable File
22 lines
492 B
Plaintext
Executable File
# description : Python bindings for PyGObject3 (common files)
|
|
# depends : python3-cairo python2-cairo gobject-introspection meson
|
|
|
|
name=python-gobject3-common
|
|
version=3.30.4
|
|
release=1
|
|
source=(https://ftp.gnome.org/pub/gnome/sources/pygobject/${version::4}/pygobject-$version.tar.xz)
|
|
md5sum=(d42f8ec30faa76a25f7d0afc88b4d822)
|
|
|
|
build() {
|
|
cd pygobject-$version
|
|
|
|
mkdir build
|
|
cd build
|
|
|
|
meson --prefix=/usr -Dpython=python3 ..
|
|
ninja
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -fr $PKG/usr/lib/python*
|
|
}
|