mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
The patch is not needed anymore as the proper includes can be specified using PYTHON_INCLUDES, and version/pythondir/pyexecdir is correctly detected using host-python. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
739 B
Makefile
23 lines
739 B
Makefile
################################################################################
|
|
#
|
|
# dbus-python
|
|
#
|
|
################################################################################
|
|
|
|
DBUS_PYTHON_VERSION = 1.2.0
|
|
DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python
|
|
DBUS_PYTHON_INSTALL_STAGING = YES
|
|
DBUS_PYTHON_LICENSE = MIT
|
|
DBUS_PYTHON_LICENSE_FILES = COPYING
|
|
|
|
DBUS_PYTHON_CONF_ENV = \
|
|
PYTHON=$(HOST_DIR)/usr/bin/python2 \
|
|
PYTHON_INCLUDES="$(shell $(STAGING_DIR)/usr/bin/python2-config --includes)" \
|
|
PYTHON_LIBS="$(shell $(STAGING_DIR)/usr/bin/python2-config --ldflags)"
|
|
|
|
DBUS_PYTHON_CONF_OPTS = --disable-html-docs --disable-api-docs
|
|
|
|
DBUS_PYTHON_DEPENDENCIES = dbus-glib python host-python
|
|
|
|
$(eval $(autotools-package))
|