ugrep: disable NEON on 32-bit ARM.

This commit is contained in:
Leah Neukirchen 2024-04-05 16:28:20 +02:00
parent c4643e2fb5
commit e4083c4456

View file

@ -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
}