mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
49
package/dbus-python/dbus-python.mk
Normal file
49
package/dbus-python/dbus-python.mk
Normal file
@@ -0,0 +1,49 @@
|
||||
################################################################################
|
||||
#
|
||||
# dbus-python
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DBUS_PYTHON_VERSION = 1.2.8
|
||||
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_DEPENDENCIES = dbus-glib
|
||||
DBUS_PYTHON_CONF_OPTS = --disable-html-docs --disable-api-docs
|
||||
|
||||
HOST_DBUS_PYTHON_DEPENDENCIES = host-dbus-glib
|
||||
HOST_DBUS_PYTHON_CONF_OPTS = --disable-html-docs --disable-api-docs
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
||||
DBUS_PYTHON_DEPENDENCIES += python host-python
|
||||
|
||||
DBUS_PYTHON_CONF_ENV += \
|
||||
PYTHON=$(HOST_DIR)/bin/python2 \
|
||||
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python2-config --includes`" \
|
||||
PYTHON_LIBS="`$(STAGING_DIR)/usr/bin/python2-config --ldflags`"
|
||||
|
||||
HOST_DBUS_PYTHON_DEPENDENCIES += host-python
|
||||
|
||||
HOST_DBUS_PYTHON_CONF_ENV += \
|
||||
PYTHON=$(HOST_DIR)/bin/python2 \
|
||||
PYTHON_INCLUDES="`$(HOST_DIR)/usr/bin/python2-config --includes`" \
|
||||
PYTHON_LIBS="`$(HOST_DIR)/usr/bin/python2-config --ldflags`"
|
||||
else
|
||||
DBUS_PYTHON_DEPENDENCIES += python3 host-python3
|
||||
|
||||
DBUS_PYTHON_CONF_ENV += \
|
||||
PYTHON=$(HOST_DIR)/bin/python3 \
|
||||
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python3-config --includes`" \
|
||||
PYTHON_LIBS="`$(STAGING_DIR)/usr/bin/python3-config --ldflags`"
|
||||
|
||||
HOST_DBUS_PYTHON_DEPENDENCIES += host-python3
|
||||
|
||||
HOST_DBUS_PYTHON_CONF_ENV += \
|
||||
PYTHON=$(HOST_DIR)/bin/python3 \
|
||||
PYTHON_INCLUDES="`$(HOST_DIR)/usr/bin/python3-config --includes`" \
|
||||
PYTHON_LIBS="`$(HOST_DIR)/usr/bin/python3-config --ldflags`"
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user