diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-21 01:33:58 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-21 01:33:58 +0000 |
| commit | 7cde9aeb5dccce578c1eed13cf1ed2c61e446800 (patch) | |
| tree | 3323e34bbec0a87a4bb659a90816b28a6a241f5a /bldit.lua | |
| parent | 6482da05e96630d622f7deea02e31cb0ff07c89e (diff) | |
huge code cleanup
Diffstat (limited to 'bldit.lua')
| -rw-r--r-- | bldit.lua | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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, }, } |
