diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-22 20:17:58 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-22 20:17:58 +0100 |
commit | 3fb50956478f503b66bcf9159d06d8dbc55a7528 (patch) | |
tree | eb3aad8fce179c0ac8c5bf17fdb20fcfe57174e8 /community/gspell | |
parent | 89c9731d5449794b71583d2976ed0cb77d651faa (diff) | |
download | aports-3fb50956478f503b66bcf9159d06d8dbc55a7528.tar.bz2 aports-3fb50956478f503b66bcf9159d06d8dbc55a7528.tar.xz |
community/gspell: disable tests on s390x
Diffstat (limited to 'community/gspell')
-rw-r--r-- | community/gspell/APKBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/community/gspell/APKBUILD b/community/gspell/APKBUILD index 463d32180b..fc5d11eb54 100644 --- a/community/gspell/APKBUILD +++ b/community/gspell/APKBUILD @@ -14,6 +14,12 @@ checkdepends="xvfb-run hunspell-en ibus" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" source="https://download.gnome.org/sources/gspell/${pkgver%.*}/gspell-$pkgver.tar.xz" +case "$CARCH" in + s390x) + options="!check" # Requires ibus which is s390x-only + ;; +esac + build() { ./configure \ --build=$CBUILD \ |