blob: 22b9f0ac64ae3e492394d01809c7000518967ee0 (
plain)
1 # Description: The VP8/VP9 Codec SDK
2 # URL: http://www.webmproject.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: yasm
5
6 name=libvpx
7 version=1.7.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-runtime-cpu-detect \
20 --enable-shared \
21 --enable-postproc \
22 --enable-pic \
23 --disable-install-docs \
24 --disable-install-srcs \
25 --enable-experimental \
26 --enable-spatial-svc
27
28 make
29 make DIST_DIR="$PKG/usr" install
30 }
|