aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-05-02 08:38:13 +0000
committerdacctal <dacctal@symlinx.net>2026-05-02 08:38:13 +0000
commit44eb727dc537403be092326639a5b7c6d7182146 (patch)
tree1459603e69496400c22f53dcec67ec2c3348400a /bldit.lua
parentc555d4c25b5526c37e94ee2c593f34bdf28b159e (diff)
fixed like half of everything idk, you can install stuff now
Diffstat (limited to 'bldit.lua')
-rw-r--r--bldit.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/bldit.lua b/bldit.lua
index 6d624c3..bb9b12e 100644
--- a/bldit.lua
+++ b/bldit.lua
@@ -5,14 +5,14 @@ global_dependencies = {}
targets = {
default = {
- dependencies = {}
- compile = function(name)
+ dependencies = {},
+ build = function(name)
os.execute("make")
- end
- pre_install = function() end
+ end,
+ pre_install = function() end,
install = function(prefix)
os.execute("make install")
- end
- post_install = function() end
+ end,
+ post_install = function() end,
}
}