15 lines
232 B
Lua
15 lines
232 B
Lua
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
|