Files
CoreMP135_buildroot/package/python-lxml/python-lxml.mk
T

37 lines
1.3 KiB
Makefile
Raw Normal View History

2015-02-10 21:01:08 +01:00
################################################################################
#
# python-lxml
#
################################################################################
2019-09-30 15:32:44 +03:00
PYTHON_LXML_VERSION = 4.4.1
PYTHON_LXML_SITE = https://files.pythonhosted.org/packages/c4/43/3f1e7d742e2a7925be180b6af5e0f67d38de2f37560365ac1a0b9a04c015
2019-01-04 09:00:50 +02:00
PYTHON_LXML_SOURCE = lxml-$(PYTHON_LXML_VERSION).tar.gz
2015-02-10 21:01:08 +01:00
# Not including the GPL, because it is used only for the test scripts.
PYTHON_LXML_LICENSE = BSD-3-Clause, Others
2015-02-10 21:01:08 +01:00
PYTHON_LXML_LICENSE_FILES = \
LICENSES.txt \
doc/licenses/BSD.txt \
doc/licenses/elementtree.txt \
src/lxml/isoschematron/resources/rng/iso-schematron.rng
# python-lxml can use either setuptools, or distutils as a fallback.
# So, we use setuptools.
PYTHON_LXML_SETUP_TYPE = setuptools
PYTHON_LXML_DEPENDENCIES = libxml2 libxslt zlib
2017-02-01 15:51:08 -02:00
HOST_PYTHON_LXML_DEPENDENCIES = host-libxml2 host-libxslt host-zlib
2015-02-10 21:01:08 +01:00
# python-lxml needs these scripts in order to properly detect libxml2 and
# libxslt compiler and linker flags
PYTHON_LXML_BUILD_OPTS = \
--with-xslt-config=$(STAGING_DIR)/usr/bin/xslt-config \
--with-xml2-config=$(STAGING_DIR)/usr/bin/xml2-config
2017-02-01 15:51:08 -02:00
HOST_PYTHON_LXML_BUILD_OPTS = \
--with-xslt-config=$(HOST_DIR)/bin/xslt-config \
--with-xml2-config=$(HOST_DIR)/bin/xml2-config
2015-02-10 21:01:08 +01:00
$(eval $(python-package))
2017-02-01 15:51:08 -02:00
$(eval $(host-python-package))