diff options
author | Tony Theodore <tonyt@logyst.com> | 2010-10-03 20:16:17 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2010-10-03 20:16:17 (GMT) |
commit | e9df64eff1f551e603e5535c4d546d70f040c4a2 (patch) | |
tree | 822d55e26fa92e451a0f3a1cf7b0067447da8fa1 | |
parent | 76e50929d39523308d70b8b18f92dfa058dd1351 (diff) | |
download | mxe-e9df64eff1f551e603e5535c4d546d70f040c4a2.zip mxe-e9df64eff1f551e603e5535c4d546d70f040c4a2.tar.gz mxe-e9df64eff1f551e603e5535c4d546d70f040c4a2.tar.bz2 |
misc fixes for libvpx and x264
-rw-r--r-- | src/libvpx.mk | 4 | ||||
-rw-r--r-- | src/x264-2-fix-bin-bash.patch | 3 | ||||
-rw-r--r-- | src/x264.mk | 4 |
3 files changed, 7 insertions, 4 deletions
diff --git a/src/libvpx.mk b/src/libvpx.mk index dac4ec7..9540d1a 100644 --- a/src/libvpx.mk +++ b/src/libvpx.mk @@ -7,14 +7,14 @@ $(PKG)_IGNORE := $(PKG)_VERSION := 0.9.1 $(PKG)_CHECKSUM := a18acb7a1a2fd62268e63aab860b43ff04669b9e $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) -$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2 +$(PKG)_FILE := $(PKG)-v$($(PKG)_VERSION).tar.bz2 $(PKG)_WEBSITE := http://code.google.com/p/webm/ $(PKG)_URL := http://webm.googlecode.com/files/$($(PKG)_FILE) $(PKG)_DEPS := gcc define $(PKG)_UPDATE wget -q -O- 'http://code.google.com/p/webm/downloads/list?sort=-uploaded' | \ - $(SED) -n 's,.*libvpx-\([0-9][^<]*\)\.tar.*,\1,p' | \ + $(SED) -n 's,.*libvpx-v\([0-9][^<]*\)\.tar.*,\1,p' | \ head -1 endef diff --git a/src/x264-2-fix-bin-bash.patch b/src/x264-2-fix-bin-bash.patch index 8f4286f..e7c98b9 100644 --- a/src/x264-2-fix-bin-bash.patch +++ b/src/x264-2-fix-bin-bash.patch @@ -1,3 +1,6 @@ +This file is part of mingw-cross-env. +See doc/index.html for further information. + diff -urN x264-snapshot-20100714-2245/configure x264-snapshot-20100714-2245.new/configure --- x264-snapshot-20100714-2245/configure 2010-07-15 06:45:06.000000000 +1000 +++ x264-snapshot-20100714-2245.new/configure 2010-10-03 23:58:24.000000000 +1100 diff --git a/src/x264.mk b/src/x264.mk index d42a20b..8fe4059 100644 --- a/src/x264.mk +++ b/src/x264.mk @@ -14,8 +14,8 @@ $(PKG)_DEPS := gcc define $(PKG)_UPDATE wget -q -O- 'http://ftp.videolan.org/pub/videolan/x264/snapshots/' | \ - $(SED) -n 's,.*<a href="x264-\snapshot-\([0-9][^"]*\)\.tar.*,\1,p' | \ - head -1 + $(SED) -n 's,.*<a href="x264-snapshot-\([0-9][^"]*\)\.tar.*,\1,p' | \ + tail -1 endef define $(PKG)_BUILD |