community/lua-toml: enable tests with luajit on ppc64le

This commit is contained in:
Jakub Jirutka 2017-12-29 13:39:45 +01:00
parent a8cd017bfa
commit 801c0dadf3

View File

@ -2,7 +2,7 @@
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=lua-toml
pkgver=2.0.0
pkgrel=0
pkgrel=1
pkgdesc="TOML decoder/encoder for Lua"
url="https://github.com/jonstoler/lua-toml"
arch="noarch"
@ -14,7 +14,7 @@ builddir="$srcdir/$pkgname-$pkgver"
# luajit is not available for selected arches
case "$CARCH" in
ppc64le | s390x) _luajit="";;
s390x) _luajit="";;
*) checkdepends="$checkdepends luajit" _luajit="jit";;
esac