aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-06-21 01:33:58 +0000
committerdacctal <dacctal@symlinx.net>2026-06-21 01:33:58 +0000
commit7cde9aeb5dccce578c1eed13cf1ed2c61e446800 (patch)
tree3323e34bbec0a87a4bb659a90816b28a6a241f5a /bldit.lua
parent6482da05e96630d622f7deea02e31cb0ff07c89e (diff)
huge code cleanup
Diffstat (limited to 'bldit.lua')
-rw-r--r--bldit.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/bldit.lua b/bldit.lua
index d724707..9967448 100644
--- a/bldit.lua
+++ b/bldit.lua
@@ -7,6 +7,11 @@ global_dependencies = {
version = "v2.1",
target = "default",
},
+ git = {
+ url = "https://github.com/git/git",
+ version = "HEAD",
+ target = "default",
+ },
}
targets = {
@@ -17,6 +22,9 @@ targets = {
install = function()
os.execute("make install")
end,
+ uninstall = function()
+ os.execute("make uninstall")
+ end,
},
quiet = {
build = function()
@@ -25,5 +33,8 @@ targets = {
install = function()
local output = io.popen("make install"):read("*a")
end,
+ uninstall = function()
+ local output = io.popen("make uninstall"):read("*a")
+ end,
},
}