From e4083c44569235f3c19f9172e84706563d991d21 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Fri, 5 Apr 2024 16:28:20 +0200 Subject: [PATCH] ugrep: disable NEON on 32-bit ARM. --- srcpkgs/ugrep/template | 4 ++++ 1 file changed, 4 insertions(+) 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 }