summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-02-13 07:47:35 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-02-13 07:47:35 (GMT)
commit4513fdd1e3184fd5480a685a2c304767ae22bc13 (patch)
treef91fe9210f8f52c0924809ca57d11254ec2c1be1 /src
parentb038f58ef6a4e57d8ffb6359220d3bae0148d8e1 (diff)
downloadmxe-4513fdd1e3184fd5480a685a2c304767ae22bc13.zip
mxe-4513fdd1e3184fd5480a685a2c304767ae22bc13.tar.gz
mxe-4513fdd1e3184fd5480a685a2c304767ae22bc13.tar.bz2
package opus: fix update macro
Diffstat (limited to 'src')
-rw-r--r--src/opus.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/opus.mk b/src/opus.mk
index 15c93c7..07d7864 100644
--- a/src/opus.mk
+++ b/src/opus.mk
@@ -10,8 +10,9 @@ $(PKG)_URL := http://downloads.xiph.org/releases/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
- $(WGET) -q -O- 'http://www.xiph.org/downloads/' | \
+ $(WGET) -q -O- 'http://downloads.xiph.org/releases/opus/?C=M;O=D' | \
$(SED) -n 's,.*opus-\([0-9][^>]*\)\.tar.*,\1,p' | \
+ grep -v 'alpha' | \
head -1
endef