diff options
author | Boris Pek <tehnick-8@yandex.ru> | 2017-03-09 19:36:20 (GMT) |
---|---|---|
committer | Boris Pek <tehnick-8@yandex.ru> | 2017-03-29 11:20:40 (GMT) |
commit | 77c8f14f1ff0465139333fe725935b0c0d1d946b (patch) | |
tree | 9b6b67a791b5dea0f90908365c0fda3c740ce653 /src | |
parent | a26337b6898e35b9c224c48da8ac6d55db83eb16 (diff) | |
download | mxe-77c8f14f1ff0465139333fe725935b0c0d1d946b.zip mxe-77c8f14f1ff0465139333fe725935b0c0d1d946b.tar.gz mxe-77c8f14f1ff0465139333fe725935b0c0d1d946b.tar.bz2 |
mxml: update from 2.9 to 2.10 + fix pkg url
Diffstat (limited to 'src')
-rw-r--r-- | src/mxml.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mxml.mk b/src/mxml.mk index 60c11de..b67f018 100644 --- a/src/mxml.mk +++ b/src/mxml.mk @@ -4,16 +4,16 @@ PKG := mxml $(PKG)_WEBSITE := https://michaelrsweet.github.io/ $(PKG)_DESCR := Mini-XML $(PKG)_IGNORE := -$(PKG)_VERSION := 2.9 -$(PKG)_CHECKSUM := cded54653c584b24c4a78a7fa1b3b4377d49ac4f451ddf170ebbc8161d85ff92 +$(PKG)_VERSION := 2.10 +$(PKG)_CHECKSUM := 267ff58b64ddc767170d71dab0c729c06f45e1df9a9b6f75180b564f09767891 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_URL := https://github.com/michaelrsweet/mxml/releases/download/release-$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := gcc pthreads define $(PKG)_UPDATE - $(WGET) -q -O- 'https://www.msweet.org/downloads.php?L+Z3' | \ - $(SED) -n 's,.*<a href="files.*mxml-\([0-9\.]*\)\.tar.*,\1,p' | \ + $(WGET) -q -O- 'https://github.com/michaelrsweet/mxml/releases' | \ + $(SED) -n 's,.*mxml/releases/download/release-.*/mxml-\([0-9\.]*\)\.tar.*,\1,p' | \ head -1 endef |