aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2024-04-05 14:28:20 +0000
committerLeah Neukirchen <leah@vuxu.org>2024-04-05 14:28:20 +0000
commite4083c44569235f3c19f9172e84706563d991d21 (patch)
tree790b3ec21d66609553b118e8ecd9a9832e91ff30
parentc4643e2fb5175ad4183c89707ce0cb8a01e13f32 (diff)
downloadvoid-packages-e4083c44569235f3c19f9172e84706563d991d21.tar
void-packages-e4083c44569235f3c19f9172e84706563d991d21.tar.gz
void-packages-e4083c44569235f3c19f9172e84706563d991d21.tar.bz2
void-packages-e4083c44569235f3c19f9172e84706563d991d21.tar.lz
void-packages-e4083c44569235f3c19f9172e84706563d991d21.tar.xz
void-packages-e4083c44569235f3c19f9172e84706563d991d21.tar.zst
void-packages-e4083c44569235f3c19f9172e84706563d991d21.zip
ugrep: disable NEON on 32-bit ARM.
-rw-r--r--srcpkgs/ugrep/template4
1 files changed, 4 insertions, 0 deletions
diff --git a/srcpkgs/ugrep/template b/srcpkgs/ugrep/template
index 512d6436108..52649a12998 100644
--- a/srcpkgs/ugrep/template
+++ b/srcpkgs/ugrep/template
@@ -12,6 +12,10 @@ homepage="https://github.com/Genivia/ugrep"
distfiles="https://github.com/Genivia/ugrep/archive/v${version}.tar.gz"
checksum=a349abb1a619e33dddbf105528bc5ba5f8d97b4f7b2c69b85d432853df3a9aee
+case "$XBPS_TARGET_MACHINE" in
+ armv*) configure_args+=" --disable-neon";;
+esac
+
post_install() {
vlicense LICENSE.txt LICENSE
}