2018-09-27 23:56:29 +10:00
|
|
|
# Description: Python bindings for GLib/GObject/GIO/GTK+/GStreamer
|
|
|
|
# URL: https://wiki.gnome.org/Projects/PyGObject
|
2023-08-19 11:23:17 +02:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2018-09-27 23:56:29 +10:00
|
|
|
# Depends on: gobject-introspection python3-cairo
|
|
|
|
|
|
|
|
name=python3-gobject
|
2023-04-01 14:59:12 +02:00
|
|
|
version=3.44.1
|
2023-08-19 11:23:17 +02:00
|
|
|
release=2
|
2018-09-27 23:56:29 +10:00
|
|
|
source=(https://ftp.gnome.org/pub/GNOME/sources/pygobject/${version::4}/pygobject-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
2023-08-19 11:23:17 +02:00
|
|
|
meson setup pygobject-$version build \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true \
|
|
|
|
-D python=/usr/bin/python3
|
|
|
|
|
|
|
|
meson compile -C build -j ${JOBS-1}
|
2018-09-27 23:56:29 +10:00
|
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
|
|
|
|
/usr/bin/python3 -m compileall -d /usr/lib $PKG/usr/lib
|
|
|
|
/usr/bin/python3 -O -m compileall -d /usr/lib $PKG/usr/lib
|
|
|
|
}
|