aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
blob: 97d3c24254373105814e0ab9472a1c48f502987e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
bldit_version = "0.0.0"
package_version = "0.0.0"

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,
	},
}