summaryrefslogtreecommitdiffstats
path: root/src/opus.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/opus.mk')
-rw-r--r--src/opus.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/opus.mk b/src/opus.mk
index bcf88d4..faafe02 100644
--- a/src/opus.mk
+++ b/src/opus.mk
@@ -3,8 +3,8 @@
PKG := opus
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 1.0.2
-$(PKG)_CHECKSUM := 37dd3d69b10612cd513ccf26675ef6d61eda24b4
+$(PKG)_VERSION := 1.1
+$(PKG)_CHECKSUM := 35005f5549e2583f5770590135984dcfce6f3d58
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://downloads.xiph.org/releases/$(PKG)/$($(PKG)_FILE)
@@ -14,15 +14,15 @@ define $(PKG)_UPDATE
$(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' | \
+ grep -v 'beta' | \
+ grep -v 'rc' | \
+ $(SORT) -Vr | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
- --host='$(TARGET)' \
- --build="`config.guess`" \
- --disable-shared \
- --prefix='$(PREFIX)/$(TARGET)'
+ $(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
endef