diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-07-14 22:06:32 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-07-14 22:09:45 +0200 |
commit | 5fafa3985b7168c7dda9836d8cebafbe0f30744b (patch) | |
tree | 6d28720bf91681a6c98e87341be80c8d91ca1182 | |
parent | 9afa5e803f90c195f4469cefcadcd5320b9747f2 (diff) | |
download | aports-5fafa3985b7168c7dda9836d8cebafbe0f30744b.tar.bz2 aports-5fafa3985b7168c7dda9836d8cebafbe0f30744b.tar.xz |
testing/lua-basexx: new aport
https://github.com/aiq/basexx/
A Lua library for base2, base16, base32, base64, base85 decoding and encoding of data strings
-rw-r--r-- | testing/lua-basexx/APKBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/testing/lua-basexx/APKBUILD b/testing/lua-basexx/APKBUILD new file mode 100644 index 0000000000..f5e54dd194 --- /dev/null +++ b/testing/lua-basexx/APKBUILD @@ -0,0 +1,53 @@ +# Contributor: Jakub Jirutka <jakub@jirutka.cz> +# Maintainer: Jakub Jirutka <jakub@jirutka.cz> +pkgname=lua-basexx +_pkgname=basexx +pkgver=0.4.0 +pkgrel=0 +pkgdesc="A Lua library for base2, base16, base32, base64, base85 decoding and encoding of data strings" +url="https://github.com/aiq/basexx/" +arch="noarch" +license="MIT" +checkdepends="lua-busted" +subpackages="" +source="$pkgname-$pkgver.tar.gz::https://github.com/aiq/$_pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/$_pkgname-$pkgver" + +# luajit is not available for selected arches +case "$CARCH" in + s390x) _luajit="";; + *) checkdepends="$checkdepends luajit" _luajit="jit";; +esac + +_luaversions="5.1 5.2 5.3" +for _v in $_luaversions; do + subpackages="$subpackages lua$_v-${pkgname#lua-}:_subpackage" + checkdepends="$checkdepends lua$_v" +done + +check() { + cd "$builddir" + + local lver; for lver in $_luaversions $_luajit; do + msg "Testing on lua$lver" + lua$lver /usr/bin/busted + done +} + +package() { + mkdir -p "$pkgdir" +} + +_subpackage() { + local lver="${subpkgname:3:3}" + pkgdesc="$pkgdesc (for Lua $lver)" + depends="lua$lver" + install_if="$pkgname=$pkgver-r$pkgrel lua$lver" + local lmod_dir="$subpkgdir/usr/share/lua/$lver" + + cd "$builddir" + mkdir -p "$lmod_dir" + cp -r lib/* "$lmod_dir"/ +} + +sha512sums="96f8e5417357cc11019ae32895f685e74182d8ea64923fb124122257eda0ad64eb6da17f0f40448f688bfa3f36ebcad70a5ae159f088ac91785ec17cb1a674bd lua-basexx-0.4.0.tar.gz" |