33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'lua-language-server'
|
|
pkgname=lua-language-server
|
|
version=3.9.3
|
|
revision=1
|
|
hostmakedepends="ninja"
|
|
short_desc="Lua LSP implementation written in Lua"
|
|
maintainer="icp <pangolin@vivaldi.net>"
|
|
license="MIT"
|
|
homepage="https://luals.github.io"
|
|
changelog="https://raw.githubusercontent.com/LuaLS/lua-language-server/master/changelog.md"
|
|
distfiles="https://github.com/LuaLS/lua-language-server/releases/download/${version}/lua-language-server-${version}-submodules.zip"
|
|
checksum=1956df2164b7a305cc20c6a090367aa9b4d0d91d4f1d2fdc1ba86a68545644de
|
|
|
|
do_build() {
|
|
ninja -C 3rd/luamake -f compile/ninja/linux.ninja
|
|
./3rd/luamake/luamake -platform ${XBPS_TARGET_MACHINE} rebuild
|
|
}
|
|
|
|
do_install() {
|
|
vinstall main.lua 644 usr/lib/${pkgname}
|
|
vinstall debugger.lua 644 usr/lib/${pkgname}
|
|
vinstall changelog.md 644 usr/lib/${pkgname}
|
|
vinstall bin/main.lua 644 usr/lib/${pkgname}/bin
|
|
vinstall bin/${pkgname} 755 usr/lib/${pkgname}/bin
|
|
|
|
vcopy meta usr/lib/${pkgname}
|
|
vcopy locale usr/lib/${pkgname}
|
|
vcopy script usr/lib/${pkgname}
|
|
|
|
vbin ${FILESDIR}/lua-language-server
|
|
vlicense LICENSE
|
|
}
|