diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-29 13:39:45 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-29 13:39:45 +0100 |
commit | 801c0dadf364621bf3ae1a93b2f8620150465f6b (patch) | |
tree | 2b7a37b36fa721f2febf5a59747b566015c47e91 /community/lua-toml | |
parent | a8cd017bfa508c35dbd60e5949fe7c52fe98aa42 (diff) | |
download | aports-801c0dadf364621bf3ae1a93b2f8620150465f6b.tar.bz2 aports-801c0dadf364621bf3ae1a93b2f8620150465f6b.tar.xz |
community/lua-toml: enable tests with luajit on ppc64le
Diffstat (limited to 'community/lua-toml')
-rw-r--r-- | community/lua-toml/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/lua-toml/APKBUILD b/community/lua-toml/APKBUILD index 42e247c265..94a1214273 100644 --- a/community/lua-toml/APKBUILD +++ b/community/lua-toml/APKBUILD @@ -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 |