summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorGonzalo Exequiel Pedone2022-03-15 14:53:28 -0300
committerGonzalo Exequiel Pedone2022-03-15 14:53:28 -0300
commitb20a47d8d500c157c8d39e93a295b7159a76e2a1 (patch)
treeba1a37a430eac335ab9f93183c751f8ef30c71bb /PKGBUILD
parentb9f81922bbff79e4acc1dca9f86e905b4d103f64 (diff)
downloadaur-b20a47d8d500c157c8d39e93a295b7159a76e2a1.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 744380fa0382..a20ca941a553 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ _android_arch=armv7a-eabi
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