# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
pkgname=libvpx
pkgver=1.14.0
pkgrel=1
pkgdesc='VP8 and VP9 codec'
arch=(armv7h 'aarch64')
url=https://www.webmproject.org/
license=(custom:BSD)
depends=(
gcc-libs
glibc
)
makedepends=(
git
# nasm
)
provides=(libvpx.so)
_tag=602e2e8979d111b02c959470da5322797dd96a19
source=(git+https://chromium.googlesource.com/webm/libvpx#tag=${_tag})
b2sums=(SKIP)
pkgver() {
cd libvpx
git describe --tags | sed 's/^v//'
}
build() {
cd libvpx
./configure \
--prefix=/usr \
--disable-install-docs \
--disable-install-srcs \
--disable-unit-tests \
--enable-pic \
--enable-postproc \
--enable-runtime-cpu-detect \
--enable-shared \
--enable-vp8 \
--enable-vp9 \
--enable-vp9-highbitdepth \
--enable-vp9-temporal-denoising
make
}
package() {
cd libvpx
make DIST_DIR="${pkgdir}"/usr install
install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
}
# vim:set sw=2 sts=-1 et: