This commit is contained in:
sam 2024-09-19 02:12:57 +02:00
commit 9298fc4e4c
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
12 changed files with 599 additions and 0 deletions

15
packages/vlp.lua Normal file
View file

@ -0,0 +1,15 @@
version = "0.1.0"
depends({"go", "1.23"}, {"hello", "*"})
function fetch()
git("https://code.vulpine.solutions/sam/vlp.git")
end
function build()
cmd("go", "build", "./cmd/vlp")
end
function install()
bin("vlp")
end