community/lua-http: disable check for ppc64le

the check hangs so disable for now.
https://github.com/daurnimator/lua-http/issues/87
This commit is contained in:
Natanael Copa 2017-11-22 21:46:34 +00:00
parent 5f591e88fa
commit 580bff76c1

View File

@ -17,8 +17,9 @@ builddir="$srcdir/$pkgname-$pkgver"
case "$CARCH" in
# luajit is not available for s390x
s390x) _luajit="";;
# XXX: Some tests fail with "Address not available".
aarch64 | armhf) options="!check";;
# FIXME: Some tests fail with "Address not available".
# and ppc64le hangs
aarch64 | armhf | ppc64le) options="!check";;
*) checkdepends="$checkdepends luajit" _luajit="jit";;
esac