libvpx: Update

This commit is contained in:
Timothy Gu 2015-06-18 20:24:44 -07:00
parent 13bcb7732a
commit 7124e13dcd
1 changed files with 8 additions and 7 deletions

View File

@ -3,16 +3,17 @@
PKG := libvpx
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.0
$(PKG)_CHECKSUM := 191b95817aede8c136cc3f3745fb1b8c50e6d5dc
$(PKG)_SUBDIR := $(PKG)-v$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-v$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://webm.googlecode.com/files/$($(PKG)_FILE)
$(PKG)_VERSION := 1.4.0
$(PKG)_CHECKSUM := d05f4e9a9878886282ac9c9246f8fac080c94c8f
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://storage.googleapis.com/downloads.webmproject.org/releases/webm/$($(PKG)_FILE)
$(PKG)_DEPS := gcc pthreads yasm
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://code.google.com/p/webm/downloads/list?sort=-uploaded' | \
$(SED) -n 's,.*libvpx-v\([0-9][^<]*\)\.tar.*,\1,p' | \
$(WGET) -q -O- 'http://downloads.webmproject.org/releases/webm/index.html' | \
$(SED) -n 's,.*libvpx-\([0-9][^>]*\)\.tar.*,\1,p' | \
$(SORT) -Vr | \
head -1
endef