30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# python-gobject
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_GOBJECT_VERSION_MAJOR = 2.28
|
|
PYTHON_GOBJECT_VERSION = $(PYTHON_GOBJECT_VERSION_MAJOR).6
|
|
PYTHON_GOBJECT_SOURCE = pygobject-$(PYTHON_GOBJECT_VERSION).tar.xz
|
|
PYTHON_GOBJECT_SITE = http://ftp.gnome.org/pub/gnome/sources/pygobject/$(PYTHON_GOBJECT_VERSION_MAJOR)
|
|
PYTHON_GOBJECT_LICENSE = LGPL-2.1+
|
|
PYTHON_GOBJECT_LICENSE_FILES = COPYING
|
|
PYTHON_GOBJECT_DEPENDENCIES = host-pkgconf libglib2
|
|
PYTHON_GOBJECT_CONF_OPTS = --disable-introspection
|
|
# for 0001-add-PYTHON_INCLUDES-override.patch
|
|
PYTHON_GOBJECT_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
PYTHON_GOBJECT_DEPENDENCIES += python host-python
|
|
|
|
PYTHON_GOBJECT_CONF_ENV = \
|
|
PYTHON=$(HOST_DIR)/usr/bin/python2 \
|
|
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python2-config --includes`"
|
|
else
|
|
PYTHON_GOBJECT_DEPENDENCIES += python3 host-python3
|
|
|
|
PYTHON_GOBJECT_CONF_ENV = \
|
|
PYTHON=$(HOST_DIR)/usr/bin/python3 \
|
|
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python3-config --includes`"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBFFI),y)
|
|
PYTHON_GOBJECT_CONF_OPTS += --with-ffi
|
|
PYTHON_GOBJECT_DEPENDENCIES += libffi
|
|
else
|
|
PYTHON_GOBJECT_CONF_OPTS += --without-ffi
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|