diff options
Diffstat (limited to 'src/libxml++.mk')
-rw-r--r-- | src/libxml++.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libxml++.mk b/src/libxml++.mk index eed3ecd..3f03e99 100644 --- a/src/libxml++.mk +++ b/src/libxml++.mk @@ -12,9 +12,8 @@ $(PKG)_URL := https://download.gnome.org/sources/libxml++/$(call SHORT_PKG_ $(PKG)_DEPS := cc glibmm libxml2 define $(PKG)_UPDATE - $(WGET) -q -O- 'https://git.gnome.org/browse/libxml++/refs/tags' | \ - grep '<a href=' | \ - $(SED) -n "s,.*<a href='[^']*/tag/?h=\\([0-9][^']*\\)'.*,\\1,p" | \ + $(WGET) -q -O- 'https://gitlab.gnome.org/GNOME/libxml++/tags' | \ + $(SED) -n "s,.*<a [^>]\+>v\?\([0-9]\+\.[0-9.]\+\)<.*,\1,p" | \ head -1 endef |