opt/libvpx/Pkgfile
2020-06-21 20:21:42 +10:00

29 lines
586 B
Plaintext

# Description: The VP8/VP9 Codec SDK
# URL: https://www.webmproject.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: yasm
name=libvpx
version=1.8.2
release=1
source=(https://github.com/webmproject/$name/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--enable-vp8 \
--enable-vp9 \
--enable-vp9-highbitdepth \
--enable-vp9-temporal-denoising \
--enable-shared \
--enable-postproc \
--enable-pic \
--disable-install-docs \
--disable-install-srcs
make
make DIST_DIR="$PKG/usr" install
}