contrib/libvpx/Pkgfile

28 lines
712 B
Plaintext
Raw Normal View History

2014-03-21 12:59:36 +01:00
# 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.5.0
2014-03-21 12:59:36 +01:00
release=1
source=(http://storage.googleapis.com/downloads.webmproject.org/releases/webm/$name-$version.tar.bz2)
2014-03-21 12:59:36 +01:00
build() {
cd $name-$version
2014-03-21 12:59:36 +01:00
./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
}