blob: 351179f65a771b7cf4c588e0034f89b5b620eaa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
$(eval $(call import.MODULE.defs,LIBVPX,libvpx,YASM))
$(eval $(call import.CONTRIB.defs,LIBVPX))
LIBVPX.FETCH.url = http://download.handbrake.fr/contrib/libvpx-v1.3.0.tar.bz2
LIBVPX.FETCH.url += http://downloads.webmproject.org/releases/webm/libvpx-v1.3.0.tar.bz2
LIBVPX.FETCH.md5 = 14783a148872f2d08629ff7c694eb31f
# TODO: libvpx >= 1.4.0
#LIBVPX.FETCH.url = http://downloads.webmproject.org/releases/webm/libvpx-1.4.0.tar.bz2
#LIBVPX.FETCH.md5 = 63b1d7f59636a42eeeee9225cc14e7de
LIBVPX.CONFIGURE.args.host =
LIBVPX.CONFIGURE.deps =
LIBVPX.CONFIGURE.extra = \
--enable-vp8-encoder \
--enable-vp9-encoder \
--disable-vp9-decoder \
--disable-vp8-decoder \
--disable-examples \
--disable-docs \
--disable-unit-tests
ifeq (1,$(BUILD.cross))
LIBVPX.CONFIGURE.env.CROSS = CROSS="$(BUILD.spec)-"
LIBVPX.CONFIGURE.args.build =
endif
ifeq (1-i686,$(BUILD.cross)-$(BUILD.machine))
LIBVPX.CONFIGURE.extra += --target=x86-win32-gcc
else ifeq (1-x86_64,$(BUILD.cross)-$(BUILD.machine))
LIBVPX.CONFIGURE.extra += --target=x86_64-win64-gcc
endif
|