mxe/src/libvpx.mk

32 lines
963 B
Makefile
Raw Normal View History

# This file is part of mingw-cross-env.
# See doc/index.html for further information.
# vpx
PKG := libvpx
$(PKG)_IGNORE :=
2010-10-03 21:43:25 +01:00
$(PKG)_VERSION := 0.9.2
$(PKG)_CHECKSUM := d3b386773aa11e2385829c078d52b3a3982d1122
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
2010-10-03 21:16:17 +01:00
$(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' | \
2010-10-03 21:16:17 +01:00
$(SED) -n 's,.*libvpx-v\([0-9][^<]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && \
CROSS='$(TARGET)-' \
./configure \
--prefix='$(PREFIX)/$(TARGET)' \
--target=x86-win32-gcc \
--disable-examples
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
$(TARGET)-ranlib $(PREFIX)/$(TARGET)/lib/libvpx.a
endef