changeset 5469:db6bbd842445

* src/speex.mk: update speex update rule
author John Donoghue <john.donoghue@ieee.org>
date Wed, 24 Jun 2020 09:29:15 -0400
parents 3940a36c1aa6
children c561daaad6eb
files src/speex.mk
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/speex.mk	Mon Jun 22 22:20:35 2020 +0200
+++ b/src/speex.mk	Wed Jun 24 09:29:15 2020 -0400
@@ -11,9 +11,8 @@
 $(PKG)_DEPS     :=
 
 define $(PKG)_UPDATE
-    $(WGET) -q -O- 'http://git.xiph.org/?p=speex.git;a=tags' | \
-    grep '<a class="list name"' | \
-    $(SED) -n 's,.*<a[^>]*>Speex-\([0-9][^<]*\)<.*,\1,p' | \
+    $(WGET) -q -O- 'https://www.speex.org/downloads/' | \
+    $(SED) -n 's,.*speex-\([0-9][0-9\.]*\)\.tar.*,\1,p' | \
     head -1
 endef