summaryrefslogtreecommitdiff
path: root/libvpx/Pkgfile
blob: 30ad5f8f8366047b5bb3b1bbdd09e1a39c76e0a6 (plain)
    1 # Description: The VP8/VP9 Codec SDK
    2 # URL: http://www.webmproject.org/
    3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
    4 # Packager: Ionut Biru, ibiru at archlinux dot org
    5 # Depends on: yasm
    6 
    7 name=libvpx
    8 version=1.3.0
    9 release=1
   10 source=(https://webm.googlecode.com/files/$name-v$version.tar.bz2)
   11 
   12 build() {
   13   cd $name-v$version
   14 
   15   ./configure --prefix=/usr \
   16               --enable-vp8 \
   17               --enable-vp9 \
   18               --enable-runtime-cpu-detect \
   19               --enable-shared \
   20               --enable-postproc \
   21               --enable-pic \
   22               --disable-install-docs \
   23               --disable-install-srcs
   24 
   25   make
   26   make DIST_DIR="$PKG/usr" install
   27 }

Generated by cgit