diff options
Diffstat (limited to 'community/arpack')
-rw-r--r-- | community/arpack/APKBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/community/arpack/APKBUILD b/community/arpack/APKBUILD index 0626b9dcbf..89e4a0aaa6 100644 --- a/community/arpack/APKBUILD +++ b/community/arpack/APKBUILD @@ -15,6 +15,12 @@ subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/opencollab/$_pkgname/archive/$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" +# Tests hang on ppc64le when running via abuild, +# try to run them with fakeroot disabled. +case "$CARCH" in + ppc64le) options="!checkroot";; +esac + _ilp64=no _builddir64="$builddir-64" if [ "$CARCH" = "x86_64" ]; then |