diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-09-16 15:46:28 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-09-16 15:46:28 -0500 |
commit | 3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c (patch) | |
tree | 1dc9ceb0437d0d49c427679b64e49724fc4c981d /meta.lua | |
parent | 42a7fc18657bc006e88d0b2a1c7c83bddcf963f4 (diff) | |
download | portable-packaging-3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c.tar.gz portable-packaging-3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c.tar.bz2 portable-packaging-3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c.zip |
More work on libssl
Diffstat (limited to '')
-rw-r--r-- | meta.lua | 22 |
1 files changed, 17 insertions, 5 deletions
@@ -1,6 +1,18 @@ | |||
1 | return { | 1 | |
2 | ["portable"] = { | 2 | local builds = {} |
3 | requires = {}, | 3 | builds["libressl-meta"] = { |
4 | produces = {}, | 4 | image="image-mingw64", |
5 | } | 5 | requires = { |
6 | {"git", "portable"}, | ||
7 | }, | ||
8 | produces = {}, | ||
9 | export=true, | ||
6 | } | 10 | } |
11 | builds["libressl-mingw64"] = { | ||
12 | image="image-mingw64", | ||
13 | requires = {}, | ||
14 | produces = { | ||
15 | ["libssl.a"] = true, | ||
16 | }, | ||
17 | } | ||
18 | return builds | ||