vp-build/srcpkgs/lua-stdlib-debug/template

49 lines
1.1 KiB
Bash

# Template file for 'lua-stdlib-debug'
pkgname=lua-stdlib-debug
version=1.0.1
revision=1
wrksrc=_debug-${version}
noarch=yes
depends="lua"
short_desc="A debug hints management library for Lua (Lua 5.3)"
maintainer="Daniel Santana <daniel@santana.tech>"
license="MIT"
homepage="https://lua-stdlib.github.io/_debug/"
distfiles="https://github.com/lua-stdlib/_debug/archive/v${version}.tar.gz"
checksum=efc560540f08dcf880ac48c6ab527bd741bbe3d6d66202a3c8be3ff5c9e1e907
do_install() {
for _lua_version in 5.1 5.2 5.3; do
vmkdir usr/share/lua/$_lua_version/
vcopy lib/std usr/share/lua/$_lua_version/
done
vdoc NEWS.md
vdoc README.md
vdoc AUTHORS.md
vlicense LICENSE.md
}
lua51-stdlib-debug_package() {
depends="lua51"
short_desc="${short_desc/5.3/5.1}"
pkg_install() {
vmove usr/share/lua/5.1
vdoc NEWS.md
vdoc README.md
vdoc AUTHORS.md
vlicense LICENSE.md
}
}
lua52-stdlib-debug_package() {
depends="lua52"
short_desc="${short_desc/5.3/5.2}"
pkg_install() {
vmove usr/share/lua/5.2
vdoc NEWS.md
vdoc README.md
vdoc AUTHORS.md
vlicense LICENSE.md
}
}