For release note, see: https://github.com/python-sdbus/python-sdbus/releases/tag/0.14.0 The upstream URL has changed so while at it also update it. Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be> [Julien: add link to release note in commit log] Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
705 B
Makefile
21 lines
705 B
Makefile
################################################################################
|
|
#
|
|
# python-sdbus
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SDBUS_VERSION = 0.14.0
|
|
PYTHON_SDBUS_SOURCE = sdbus-$(PYTHON_SDBUS_VERSION).tar.gz
|
|
PYTHON_SDBUS_SITE = https://files.pythonhosted.org/packages/17/9a/1dc010428fa1f444809d9aa1adb3ce231dae891b5f33635d8f4d7a8e33fd
|
|
PYTHON_SDBUS_SETUP_TYPE = setuptools
|
|
PYTHON_SDBUS_LICENSE = LGPL-2.1+
|
|
PYTHON_SDBUS_LICENSE_FILES = COPYING
|
|
PYTHON_SDBUS_DEPENDENCIES = systemd
|
|
PYTHON_SDBUS_ENV = CFLAGS="$(TARGET_CFLAGS) -fPIC"
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
PYTHON_SDBUS_ENV += PYTHON_SDBUS_USE_STATIC_LINK=1
|
|
endif
|
|
|
|
$(eval $(python-package))
|