mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-09 09:52:27 +01:00
https://github.com/leafo/loadkit Allows to load arbitrary files within the Lua package path
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=lua-loadkit
|
|
_pkgname=loadkit
|
|
pkgver=1.1.0
|
|
pkgrel=0
|
|
pkgdesc="Allows to load arbitrary files within the Lua package path"
|
|
url="https://github.com/leafo/loadkit"
|
|
arch="noarch"
|
|
license="MIT"
|
|
subpackages=""
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/leafo/$_pkgname/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
# Tests require moonscript, but moonscript requires loadkit to run all tests.
|
|
options="!check"
|
|
|
|
_luaversions="5.1 5.2 5.3"
|
|
for _v in $_luaversions; do
|
|
subpackages="$subpackages lua$_v-${pkgname#lua-}:_subpackage"
|
|
checkdepends="$checkdepends lua$_v"
|
|
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"
|
|
|
|
install -D -m 644 "$builddir"/loadkit.lua \
|
|
"$subpkgdir"/usr/share/lua/$lver/loadkit.lua
|
|
}
|
|
|
|
sha512sums="1d4405d8c2819f4293117df06b1587d190b9925fe77e4d055400b4610813b771b8d7f7fef78e5884ebd494b78fc51c94eb5b5b677b6ec532309b9b489e738457 lua-loadkit-1.1.0.tar.gz"
|