aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
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,
+ },
}