summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorGonzalo Exequiel Pedone2022-03-15 14:53:01 -0300
committerGonzalo Exequiel Pedone2022-03-15 14:53:01 -0300
commit2ebac5731ebae361025378498940052b8cc2b531 (patch)
treed93a0ef7deeb1d465197098e0eaede2fd4bb3aed /PKGBUILD
parenta64783291b3f43b4a7d716bc504e550fdd777d21 (diff)
downloadaur-2ebac5731ebae361025378498940052b8cc2b531.tar.gz
Add --disable-asm option for x86-64.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD7
1 files changed, 6 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index bd42e135b597..77d150aefc23 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ _android_arch=aarch64
pkgname=android-${_android_arch}-x264
pkgver=157.r72db4377
-pkgrel=1
+pkgrel=2
arch=('any')
pkgdesc='Free library for encoding H264/AVC video streams (android)'
license=('GPL')
@@ -13,6 +13,7 @@ url='https://www.videolan.org/developers/x264.html'
depends=('android-ndk'
"android-${_android_arch}-ffmpeg"
"android-${_android_arch}-l-smash")
+groups=(android-x264)
options=(!strip !buildflags staticlibs !emptydirs)
makedepends=('android-configure' 'git' 'nasm')
_commit=72db437770fd1ce3961f624dd57a8e75ff65ae0b
@@ -50,6 +51,10 @@ build() {
--disable-asm
--host=i686-linux"
;;
+ x86-64)
+ configue_opts+="
+ --disable-asm"
+ ;;
*)
;;
esac