mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
It always uses its own copy of pyexpat, but we can at least make it use buildroot's expat.so. [Peter: select expat] Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
645 B
Makefile
18 lines
645 B
Makefile
################################################################################
|
|
#
|
|
# python-pyxml
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_PYXML_VERSION = 0.8.4
|
|
PYTHON_PYXML_SOURCE = PyXML-$(PYTHON_PYXML_VERSION).tar.gz
|
|
PYTHON_PYXML_SITE = http://downloads.sourceforge.net/project/pyxml/pyxml/0.8.4/
|
|
PYTHON_PYXML_LICENSE = BSD-3c
|
|
PYTHON_PYXML_LICENSE_FILES = LICENSE
|
|
PYTHON_PYXML_SETUP_TYPE = distutils
|
|
PYTHON_PYXML_DEPENDENCIES = expat
|
|
PYTHON_PYXML_BUILD_OPTS = --with-libexpat=$(STAGING_DIR)/usr
|
|
PYTHON_PYXML_INSTALL_TARGET_OPTS = --with-libexpat=$(STAGING_DIR)/usr
|
|
|
|
$(eval $(python-package))
|