ed579f5a40
Also change -Dpycairo=false to -Dpycairo=disabled as the option type has changed to a feature. Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# python-gobject
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_GOBJECT_VERSION_MAJOR = 3.42
|
|
PYTHON_GOBJECT_VERSION = $(PYTHON_GOBJECT_VERSION_MAJOR).0
|
|
PYTHON_GOBJECT_SOURCE = pygobject-$(PYTHON_GOBJECT_VERSION).tar.xz
|
|
PYTHON_GOBJECT_SITE = https://ftp.gnome.org/pub/gnome/sources/pygobject/$(PYTHON_GOBJECT_VERSION_MAJOR)
|
|
PYTHON_GOBJECT_LICENSE = LGPL-2.1+
|
|
PYTHON_GOBJECT_LICENSE_FILES = COPYING
|
|
PYTHON_GOBJECT_INSTALL_STAGING = YES
|
|
PYTHON_GOBJECT_DEPENDENCIES = \
|
|
gobject-introspection \
|
|
host-pkgconf \
|
|
libglib2 \
|
|
python3
|
|
|
|
PYTHON_GOBJECT_CONF_OPTS += \
|
|
-Dpycairo=disabled \
|
|
-Dtests=false
|
|
|
|
# A sysconfigdata_name must be manually specified or the resulting .so
|
|
# will have a x86_64 prefix, which causes "import gi" to fail.
|
|
# A pythonpath must be specified or the host python path will be used resulting
|
|
# in a "not a valid python" error.
|
|
PYTHON_GOBJECT_CONF_ENV += \
|
|
_PYTHON_SYSCONFIGDATA_NAME=$(PKG_PYTHON_SYSCONFIGDATA_NAME) \
|
|
PYTHONPATH=$(PYTHON3_PATH)
|
|
|
|
$(eval $(meson-package))
|