From c2318d347f2b9c5e2126ffe2f0209a2f6c03f802 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Thu, 20 Apr 2023 16:27:51 +0200 Subject: [PATCH] New package: zls-0.10.0 --- srcpkgs/zls/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/zls/template diff --git a/srcpkgs/zls/template b/srcpkgs/zls/template new file mode 100644 index 000000000000..1adbe12af904 --- /dev/null +++ b/srcpkgs/zls/template @@ -0,0 +1,24 @@ +# Template file for 'zls' +pkgname=zls +version=0.10.0 +revision=1 +build_style=zig-build +hostmakedepends="git" +short_desc="Zig language server" +maintainer="Bnyro " +license="MIT" +homepage="https://github.com/zigtools/zls" +distfiles="https://github.com/zigtools/zls/archive/refs/tags/${version}.tar.gz" +checksum=ad8c16721a10a55b759f0cd63243301565b948b1d48075e1fda89ccf264a2bdf + +pre_build() { + rmdir src/tracy src/known-folders + git init + git submodule update --init --recursive --remote + git submodule add https://github.com/ziglibs/known-folders src/known-folders + git submodule add https://github.com/wolfpld/tracy src/tracy +} + +post_install() { + vlicense LICENSE +}