diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2020-04-07 16:18:00 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-04-07 16:18:00 +0000 |
commit | d85663b882acc5499959448237f2f6478945de4b (patch) | |
tree | 6c6aae33f9875f148d368aefe8d7b1c93cbf69a1 | |
parent | d09d698ebd5e65405e8873eba7364c8bcb77f662 (diff) | |
download | aports-d85663b882acc5499959448237f2f6478945de4b.tar.gz aports-d85663b882acc5499959448237f2f6478945de4b.tar.bz2 aports-d85663b882acc5499959448237f2f6478945de4b.tar.xz |
community/gpgme: disable tests on mips
-rw-r--r-- | community/gpgme/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/gpgme/APKBUILD b/community/gpgme/APKBUILD index f570fe34cce..0e8b6a4439f 100644 --- a/community/gpgme/APKBUILD +++ b/community/gpgme/APKBUILD @@ -13,6 +13,10 @@ makedepends="$depends_dev python3-dev py3-setuptools swig libgpg-error-dev libas subpackages="$pkgname-dev $pkgname-doc gpgmepp py3-gpgme:py3 q$pkgname $pkgname-lisp:lisp:noarch" source="https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-$pkgver.tar.bz2" +case "$CARCH" in +mips*) options="!check";; +esac + build() { ./configure \ --build=$CBUILD \ |