aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-06-07 05:58:15 +0000
committerdacctal <dacctal@symlinx.net>2026-06-07 05:58:15 +0000
commitea6745dd7ad75c85d0ea4471e9f3357532fb0eb0 (patch)
tree1b5a01898a845f579981303edb0709f9cc95a2f2 /bldit.lua
parentab3f27fd2fb32a52f76146970823525f044a325c (diff)
tiny fixes & .editorconfig (thx indium)0.1.1
Diffstat (limited to 'bldit.lua')
-rw-r--r--bldit.lua43
1 files changed, 25 insertions, 18 deletions
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,
+ },
}