glib: fix updater

This commit is contained in:
Boris Nagaev 2017-02-01 03:16:17 +01:00
parent 36296ee420
commit ef2faa7039
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ $(PKG)_DEPS := gcc dbus gettext libffi libiconv pcre zlib
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://git.gnome.org/browse/glib/refs/tags' | \
$(SED) -n "s,.*tag/?id=\([0-9]\+\.[0-9]*[02468]\.[^']*\).*,\1,p" | \
$(SED) -n "s,.*glib-\([0-9]\+\.[0-9]*[02468]\.[^']*\)\.tar.*,\1,p" | \
$(SORT) -Vr | \
head -1
endef