diff --git a/community/libvpx1.3/PKGBUILD b/community/libvpx1.3/PKGBUILD index 43d1fa077..53e5c64c9 100644 --- a/community/libvpx1.3/PKGBUILD +++ b/community/libvpx1.3/PKGBUILD @@ -5,11 +5,10 @@ # ALARM: Kevin Mihelich # - patch to fix building -# - disable neon pkgname=libvpx1.3 pkgver=1.3.0 -pkgrel=3 +pkgrel=3.1 pkgdesc='VP8 and VP9 codec' arch=('x86_64') url='http://www.webmproject.org/' @@ -34,8 +33,6 @@ prepare() { build() { cd libvpx-${pkgver} - [[ $CARCH != "aarch64" ]] && CONFIG="--disable-neon" - ./configure \ --prefix='/usr' \ --enable-runtime-cpu-detect \ @@ -45,7 +42,7 @@ build() { --disable-install-srcs \ --enable-vp8 \ --enable-postproc \ - --enable-vp9 $CONFIG + --enable-vp9 make }