7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
662 B
Makefile
18 lines
662 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/$(PYTHON_PYXML_VERSION)
|
|
PYTHON_PYXML_LICENSE = BSD-3c
|
|
PYTHON_PYXML_LICENSE_FILES = LICENCE
|
|
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))
|