view src/build-markupsafe.mk @ 4529:ee8b8d160d2d

* src/build-markupsafe.mk: use https for file url
author John Donoghue <john.donoghue@ieee.org>
date Fri, 10 Nov 2017 07:03:02 -0500
parents 67c0ec94a9eb
children fb50ae69121c
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := build-markupsafe
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 1.0
$(PKG)_CHECKSUM := 9072e80a7faa0f49805737a48f3d871eb1c48728
$(PKG)_SUBDIR   := MarkupSafe-$($(PKG)_VERSION)
$(PKG)_FILE     := MarkupSafe-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := https://pypi.python.org/packages/4d/de/32d741db316d8fdb7680822dd37001ef7a448255de9699ab4bfcbdf4172b/$($(PKG)_FILE)
$(PKG)_DEPS     := build-python build-setuptools

define $(PKG)_UPDATE
    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
    echo $($(PKG)_VERSION)
endef

define $(PKG)_BUILD
    cd '$(1)' && python setup.py install
endef