# Maintainer: Natanael Copa pkgname=libvpx pkgver=0.9.7 pkgrel=0 pkgdesc="Library for the vp8 codec" url="http://www.webmproject.org/" arch="all" license="GPL" depends= makedepends="coreutils yasm bash perl" install= subpackages="$pkgname-dev" source="http://webm.googlecode.com/files/libvpx-v$pkgver.tar.bz2" _builddir="$srcdir"/$pkgname-v$pkgver prepare() { cd "$_builddir" } build() { cd "$_builddir" ./configure \ --enable-pic \ --enable-libs \ --enable-runtime-cpu-detect \ --enable-vp8 \ --disable-install-srcs \ || return 1 make || return 1 } package() { cd "$_builddir" make DIST_DIR="$pkgdir"/usr install chmod 644 "$pkgdir"/usr/include/vpx/*.h } md5sums="893d07d1bdedaac1ad2ab63d32de7d83 libvpx-v0.9.7.tar.bz2"