From ea6745dd7ad75c85d0ea4471e9f3357532fb0eb0 Mon Sep 17 00:00:00 2001 From: dacctal Date: Sun, 7 Jun 2026 05:58:15 +0000 Subject: tiny fixes & .editorconfig (thx indium) --- bldit.lua | 43 +++++++++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 18 deletions(-) (limited to 'bldit.lua') diff --git a/bldit.lua b/bldit.lua index bd39eb8..af22a1a 100644 --- a/bldit.lua +++ b/bldit.lua @@ -1,5 +1,5 @@ -bldit_version = "0.1.0" -package_version = "0.1.0" +bldit_version = "0.1.1" +package_version = "0.1.1" global_dependencies = { luajit = { @@ -10,20 +10,27 @@ global_dependencies = { } targets = { - default = { - build = function(name) - os.execute("make") - end, - install = function(prefix) - os.execute("make install") - end, - }, - quiet = { - build = function(name) - local output = io.popen("make"):read("*a") - end, - install = function(prefix) - local output = io.popen("make install"):read("*a") - end, - }, + default = { + dependencies = { + pipemixer = { + url = "https://github.com/heather7283/pipemixer", + version = "HEAD", + target = "default", + }, + }, + build = function() + os.execute("make") + end, + install = function() + os.execute("make install") + end, + }, + quiet = { + build = function() + local output = io.popen("make"):read("*a") + end, + install = function() + local output = io.popen("make install"):read("*a") + end, + }, } -- cgit v1.2.3