summaryrefslogtreecommitdiff
path: root/meta.lua
blob: 64e66d857861fd9a6106987d8fd6f0ba1e4c9101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

local build = {}
build["lua4win-license"] = {
	image = "image-pandoc",
	requires = {},
	produces = {
		["License.rtf"] = true,
	},
	entrypoint="license",
}
build["lua4win-dist-lua"] = {
	image = "image-wix",
	requires = {
		{"cicd","luajit-three-debug-mingw64:lua.exe"},
		{"cicd","luajit-three-debug-mingw64:lua51.dll"},
		{"cicd","luarocks-jit-three-debug-mingw64:luarocks.exe"},
		{"cicd","busybox-w32-three-debug-mingw64:busybox.exe"},
		{"cicd","lua4win-license:License.rtf"}
	},
	produces = {
		["lua4win.msi"] = true,
	},
}
build["lua4win-dist-lua-test"] = {
	image = "image-wine",
	entrypoint="test",
	requires = {
		{"cicd", "lua4win-dist-lua:lua4win.msi"}
	},
	produces = {
		["images.tar.gz"] = true
	},
}
return build