mirror of
https://github.com/godotengine/buildroot.git
synced 2025-12-31 09:48:56 +03:00
[Thomas:
- fix legal info:
* the license is GPLv2+ *or* Apache 2.0
* the license files list separator is space, not comma
* README.license.md has been added to the license files, since it
contains some useful information about the licensing.
- rewrap Config.in help text.]
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
762 B
Makefile
22 lines
762 B
Makefile
#############################################################
|
|
#
|
|
# python-pyroute2
|
|
#
|
|
#############################################################
|
|
|
|
PYTHON_PYROUTE2_VERSION = 16a8aced82c65b94eb9e15a7d773a3256763d155
|
|
PYTHON_PYROUTE2_SITE = $(call github,svinota,pyroute2,$(PYTHON_PYROUTE2_VERSION))
|
|
PYTHON_PYROUTE2_LICENSE = Apache-2.0 or GPLv2+
|
|
PYTHON_PYROUTE2_LICENSE_FILES = LICENSE.Apache.v2 LICENSE.GPL.v2 README.license.md
|
|
PYTHON_PYROUTE2_SETUP_TYPE = distutils
|
|
PYTHON_PYROUTE2_DEPENDENCIES = host-gawk
|
|
|
|
# this hook is needed to create setup.py from setup.py.in
|
|
define PYTHON_PYROUTE2_CREATE_SETUP_PY
|
|
$(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) update-version
|
|
endef
|
|
|
|
PYTHON_PYROUTE2_PRE_CONFIGURE_HOOKS += PYTHON_PYROUTE2_CREATE_SETUP_PY
|
|
|
|
$(eval $(python-package))
|