diff options
author | Jonas Kvinge <jonas@jkvinge.net> | 2019-09-07 13:09:23 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2019-09-08 03:00:19 (GMT) |
commit | b9b55a531b63104b88a28de0351ae4d37b3b8165 (patch) | |
tree | 8de7214e91304ad1c33dfb89644d7ecce4efcf31 | |
parent | 146cad7e938660211629c4f3911b49fde62b15eb (diff) | |
download | mxe-b9b55a531b63104b88a28de0351ae4d37b3b8165.zip mxe-b9b55a531b63104b88a28de0351ae4d37b3b8165.tar.gz mxe-b9b55a531b63104b88a28de0351ae4d37b3b8165.tar.bz2 |
Fix libunistring update
-rw-r--r-- | src/libunistring.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libunistring.mk b/src/libunistring.mk index 1c2ecaf..1206cae 100644 --- a/src/libunistring.mk +++ b/src/libunistring.mk @@ -4,17 +4,17 @@ PKG := libunistring $(PKG)_WEBSITE := https://www.gnu.org/software/libunistring/ $(PKG)_IGNORE := $(PKG)_VERSION := 0.9.10 -$(PKG)_CHECKSUM := a82e5b333339a88ea4608e4635479a1cfb2e01aafb925e1290b65710d43f610b +$(PKG)_CHECKSUM := eb8fb2c3e4b6e2d336608377050892b54c3c983b646c561836550863003c05d7 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) -$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz $(PKG)_URL := https://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE) $(PKG)_DEPS := cc libiconv define $(PKG)_UPDATE - $(WGET) -q -O- 'https://git.savannah.gnu.org/gitweb/?p=libunistring.git;a=tags' | \ - grep '<a class="list name"' | \ - $(SED) -n 's,.*<a[^>]*>v\([0-9][^<]*\)<.*,\1,p' | \ - head -1 + $(WGET) -q -O- 'https://ftp.gnu.org/gnu/libunistring/?C=M;O=D' | \ + $(SED) -n 's,.*<a href="libunistring-\([0-9][^"]*\)\.tar.*,\1,p' | \ + $(SORT) -V | \ + tail -1 endef define $(PKG)_BUILD |