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

global_dependencies = {}

targets = {
	default = {
		dependencies = {},
		build = function(name)
			os.execute("make")
		end,
		pre_install = function() end,
		install = function(prefix)
			os.execute("make install")
		end,
		post_install = function() end,
	}
}