diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-07 05:58:15 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-07 05:58:15 +0000 |
| commit | ea6745dd7ad75c85d0ea4471e9f3357532fb0eb0 (patch) | |
| tree | 1b5a01898a845f579981303edb0709f9cc95a2f2 /bldit.lua | |
| parent | ab3f27fd2fb32a52f76146970823525f044a325c (diff) | |
tiny fixes & .editorconfig (thx indium)0.1.1
Diffstat (limited to 'bldit.lua')
| -rw-r--r-- | bldit.lua | 43 |
1 files changed, 25 insertions, 18 deletions
@@ -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, + }, } |
