diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-09-16 15:47:58 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-09-16 15:48:20 -0500 |
commit | d10ca17e594791f50dbe06a747e7053728a5d202 (patch) | |
tree | 9ad2759b6a71eb93b46ed52d7b37bbdcc747fa68 | |
parent | 3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c (diff) | |
download | portable-packaging-d10ca17e594791f50dbe06a747e7053728a5d202.tar.gz portable-packaging-d10ca17e594791f50dbe06a747e7053728a5d202.tar.bz2 portable-packaging-d10ca17e594791f50dbe06a747e7053728a5d202.zip |
Correctly seperate out meta image
-rw-r--r-- | meta.lua | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -2,15 +2,16 @@ | |||
2 | local builds = {} | 2 | local builds = {} |
3 | builds["libressl-meta"] = { | 3 | builds["libressl-meta"] = { |
4 | image="image-mingw64", | 4 | image="image-mingw64", |
5 | requires = { | 5 | entrypoint="image", |
6 | {"git", "portable"}, | 6 | requires = {}, |
7 | }, | ||
8 | produces = {}, | 7 | produces = {}, |
9 | export=true, | 8 | export=true, |
10 | } | 9 | } |
11 | builds["libressl-mingw64"] = { | 10 | builds["libressl-mingw64"] = { |
12 | image="image-mingw64", | 11 | image="image-mingw64", |
13 | requires = {}, | 12 | requires = { |
13 | {"git", "portable"}, | ||
14 | }, | ||
14 | produces = { | 15 | produces = { |
15 | ["libssl.a"] = true, | 16 | ["libssl.a"] = true, |
16 | }, | 17 | }, |