diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-15 10:59:50 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-15 10:59:50 -0300 |
commit | 2b59a94ef29e819b6ba53b779c35bc12faed34d2 (patch) | |
tree | 2c29c56414f015717dec66f00af67694cdd3684e /community/pulseaudio | |
parent | ba6c1edd23d1ce5a3227995edc87c33a08faa2b6 (diff) | |
download | aports-2b59a94ef29e819b6ba53b779c35bc12faed34d2.tar.bz2 aports-2b59a94ef29e819b6ba53b779c35bc12faed34d2.tar.xz |
community/pulseaudio: disable tests on x86 and ppc64le
Diffstat (limited to 'community/pulseaudio')
-rw-r--r-- | community/pulseaudio/APKBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/community/pulseaudio/APKBUILD b/community/pulseaudio/APKBUILD index 6f09377e21..3225f650c3 100644 --- a/community/pulseaudio/APKBUILD +++ b/community/pulseaudio/APKBUILD @@ -65,6 +65,12 @@ source="https://freedesktop.org/software/pulseaudio/releases/pulseaudio-$pkgver. $pkgname.confd " +case "$CARCH" in + x86|ppc64le) + options="$options !check" # once-test fails, all others pass + ;; +esac + build() { meson \ --prefix=/usr \ |