diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-09-27 12:36:13 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-09-27 12:36:13 -0500 |
commit | 756021ce242db6ac4463efdbb5d1bcd055f48e6b (patch) | |
tree | b11735d1888927a6f7a957b9b06d439aa56c4c1a /meta.lua | |
parent | f95cdfe9e648419210dc3cba9414ab96da95e275 (diff) | |
download | lua4win-dist-lua-756021ce242db6ac4463efdbb5d1bcd055f48e6b.tar.gz lua4win-dist-lua-756021ce242db6ac4463efdbb5d1bcd055f48e6b.tar.bz2 lua4win-dist-lua-756021ce242db6ac4463efdbb5d1bcd055f48e6b.zip |
Start working on installer
Diffstat (limited to 'meta.lua')
-rw-r--r-- | meta.lua | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -1,6 +1,23 @@ | |||
1 | return { | 1 | return { |
2 | ["lua4win-dist-lua"] = { | 2 | ["lua4win-dist-lua"] = { |
3 | requires = {}, | 3 | image = "image-msi", |
4 | requires = { | ||
5 | {"cicd","luajit-three-debug-mingw64:luajit.exe"}, | ||
6 | {"cicd","luajit-three-debug-mingw64:lua51.dll"}, | ||
7 | {"cicd","luarocks-three-debug-mingw64:luarocks.exe"}, | ||
8 | }, | ||
9 | produces = { | ||
10 | ["lua4win.msi"] = true, | ||
11 | }, | ||
12 | }, | ||
13 | --[[ | ||
14 | ["lua4win-dist-lua-test"] = { | ||
15 | image = "image-wine", | ||
16 | entrypoint="test", | ||
17 | requires = { | ||
18 | {"cicd", "lua4win-dist-lua:lua4win.msi"} | ||
19 | }, | ||
4 | produces = {}, | 20 | produces = {}, |
5 | } | 21 | } |
22 | ]] | ||
6 | } | 23 | } |