opt/libvpx/Pkgfile

29 lines
587 B
Plaintext
Raw Normal View History

2017-10-14 08:54:34 +02:00
# Description: The VP8/VP9 Codec SDK
# URL: https://www.webmproject.org/
2017-10-14 08:58:12 +02:00
# Maintainer: Danny Rawlins, crux at romster dot me
2017-10-14 08:54:34 +02:00
# Depends on: yasm
name=libvpx
version=1.11.0
2017-10-14 08:54:34 +02:00
release=1
2017-10-14 08:58:12 +02:00
source=(https://github.com/webmproject/$name/archive/v$version/$name-v$version.tar.gz)
2017-10-14 08:54:34 +02:00
build() {
2017-10-14 08:58:12 +02:00
cd $name-$version
2017-10-14 08:54:34 +02:00
2017-10-14 08:58:12 +02:00
./configure \
--prefix=/usr \
--enable-vp8 \
--enable-vp9 \
--enable-vp9-highbitdepth \
2019-10-26 09:38:46 +02:00
--enable-vp9-temporal-denoising \
2017-10-14 08:58:12 +02:00
--enable-shared \
--enable-postproc \
--enable-pic \
--disable-install-docs \
2019-10-26 09:38:46 +02:00
--disable-install-srcs
2017-10-14 08:54:34 +02:00
2017-10-14 08:58:12 +02:00
make
make DIST_DIR="$PKG/usr" install
2017-10-14 08:54:34 +02:00
}