summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-01-06 04:58:16 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2016-01-06 04:58:16 (GMT)
commit31e42eeb3624b1ae76b9c0601c2cbae108efd204 (patch)
treeec4a5431c7898d5f88944c5009491e831d7a92c2 /src
parent786654d9ad2f34554c19e696c11875bea3caf384 (diff)
parenta2e4d1cb128cac5f5c17bb2626f998a7f12d4df9 (diff)
downloadmxe-31e42eeb3624b1ae76b9c0601c2cbae108efd204.zip
mxe-31e42eeb3624b1ae76b9c0601c2cbae108efd204.tar.gz
mxe-31e42eeb3624b1ae76b9c0601c2cbae108efd204.tar.bz2
Merge pull request #1083 from TimothyGu/libgnurx
Use my fork of libgnurx
Diffstat (limited to 'src')
-rw-r--r--src/libgnurx.mk16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/libgnurx.mk b/src/libgnurx.mk
index 1958bf1..219477d 100644
--- a/src/libgnurx.mk
+++ b/src/libgnurx.mk
@@ -3,20 +3,18 @@
PKG := libgnurx
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 2.5.1
-$(PKG)_CHECKSUM := 7147b7f806ec3d007843b38e19f42a5b7c65894a57ffc297a76b0dcd5f675d76
+$(PKG)_VERSION := 2.6.1
+$(PKG)_CHECKSUM := ee6edc110c6b63d0469f4f05ef187564b310cc8a88b6566310a4aebd48b612c7
$(PKG)_SUBDIR := mingw-libgnurx-$($(PKG)_VERSION)
$(PKG)_FILE := mingw-libgnurx-$($(PKG)_VERSION)-src.tar.gz
-$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/mingw/Other/UserContributed/regex/mingw-regex-$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_URL := https://github.com/TimothyGu/libgnurx/releases/download/libgnurx-$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
- $(WGET) -q -O- 'http://sourceforge.net/projects/mingw/files/Other/UserContributed/regex/' | \
- grep 'mingw-regex-' | \
- $(SED) -n 's,.*mingw-regex-\([0-9\.]*\).*,\1,p' | \
- $(SORT) | \
- uniq | \
- tail -1
+ $(WGET) -q -O- 'https://api.github.com/repos/TimothyGu/libgnurx/git/refs/tags/' \
+ | $(SED) -n 's#.*"ref": "refs/tags/libgnurx-\([^"]*\).*#\1#p' \
+ | $(SORT) -V \
+ | tail -1
endef
define $(PKG)_BUILD