summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index c289b3f..cfbc52b 100644
--- a/Makefile
+++ b/Makefile
@@ -129,6 +129,13 @@ define MXE_GET_GITHUB_SHA
| head -1
endef
+define MXE_GET_GITHUB_TAGS
+ $(WGET) -q -O- 'https://api.github.com/repos/$(strip $(1))/git/refs/tags/' \
+ | $(SED) -n 's#.*"ref": "refs/tags/\([^"]*\).*#\1#p' \
+ | $(SORT) -V \
+ | tail -1
+endef
+
# use a minimal whitelist of safe environment variables
ENV_WHITELIST := PATH LANG MAKE% MXE% %PROXY %proxy LD_LIBRARY_PATH ACLOCAL_PATH
unexport $(filter-out $(ENV_WHITELIST),$(shell env | cut -d '=' -f1))