forked from ports/contrib
28 lines
678 B
Plaintext
28 lines
678 B
Plaintext
# Description: The VP8/VP9 Codec SDK
|
|
# URL: http://www.webmproject.org/
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Ionut Biru, ibiru at archlinux dot org
|
|
# Depends on: yasm
|
|
|
|
name=libvpx
|
|
version=1.3.0
|
|
release=1
|
|
source=(https://webm.googlecode.com/files/$name-v$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-v$version
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-vp8 \
|
|
--enable-vp9 \
|
|
--enable-runtime-cpu-detect \
|
|
--enable-shared \
|
|
--enable-postproc \
|
|
--enable-pic \
|
|
--disable-install-docs \
|
|
--disable-install-srcs
|
|
|
|
make
|
|
make DIST_DIR="$PKG/usr" install
|
|
}
|