2017-10-14 17:54:34 +11:00
|
|
|
# Description: The VP8/VP9 Codec SDK
|
|
|
|
# URL: http://www.webmproject.org/
|
2017-10-14 17:58:12 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2017-10-14 17:54:34 +11:00
|
|
|
# Depends on: yasm
|
|
|
|
|
|
|
|
name=libvpx
|
2018-03-15 01:07:34 +11:00
|
|
|
version=1.7.0
|
2017-10-14 17:54:34 +11:00
|
|
|
release=1
|
2017-10-14 17:58:12 +11:00
|
|
|
source=(https://github.com/webmproject/$name/archive/v$version/$name-v$version.tar.gz)
|
2017-10-14 17:54:34 +11:00
|
|
|
|
|
|
|
build() {
|
2017-10-14 17:58:12 +11:00
|
|
|
cd $name-$version
|
2017-10-14 17:54:34 +11:00
|
|
|
|
2017-10-14 17:58:12 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-vp8 \
|
|
|
|
--enable-vp9 \
|
|
|
|
--enable-vp9-highbitdepth \
|
|
|
|
--enable-runtime-cpu-detect \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-postproc \
|
|
|
|
--enable-pic \
|
|
|
|
--disable-install-docs \
|
|
|
|
--disable-install-srcs \
|
|
|
|
--enable-experimental \
|
|
|
|
--enable-spatial-svc
|
2017-10-14 17:54:34 +11:00
|
|
|
|
2017-10-14 17:58:12 +11:00
|
|
|
make
|
|
|
|
make DIST_DIR="$PKG/usr" install
|
2017-10-14 17:54:34 +11:00
|
|
|
}
|