blob: 7cb8ab35e800f637ac23b59ace25100edf0654e1 (
plain)
1 # Description: The VP8/VP9 Codec SDK
2 # URL: https://www.webmproject.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: yasm
5
6 name=libvpx
7 version=1.10.0
8 release=1
9 source=(https://github.com/webmproject/$name/archive/v$version/$name-v$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --enable-vp8 \
17 --enable-vp9 \
18 --enable-vp9-highbitdepth \
19 --enable-vp9-temporal-denoising \
20 --enable-shared \
21 --enable-postproc \
22 --enable-pic \
23 --disable-install-docs \
24 --disable-install-srcs
25
26 make
27 make DIST_DIR="$PKG/usr" install
28 }
|