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 | |
parent | 42a7fc18657bc006e88d0b2a1c7c83bddcf963f4 (diff) | |
download | portable-packaging-3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c.tar.gz portable-packaging-3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c.tar.bz2 portable-packaging-3dc9a94674e72a849e4d4efdb9fd8bdd46cfd66c.zip |
More work on libssl
-rw-r--r-- | image | 5 | ||||
-rwxr-xr-x | init | 5 | ||||
-rw-r--r-- | meta.lua | 22 |
3 files changed, 27 insertions, 5 deletions
@@ -0,0 +1,5 @@ | |||
1 | #!/bin/sh -ex | ||
2 | |||
3 | rc-service networking start | ||
4 | |||
5 | apk add automake autoconf git libtool perl patch | ||
@@ -1 +1,6 @@ | |||
1 | #!/bin/sh -ex | 1 | #!/bin/sh -ex |
2 | |||
3 | cd portable | ||
4 | ./autogen.sh | ||
5 | CC=gcc ./configure --host=x86_64-w64-mingw32 | ||
6 | make | ||
@@ -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 | ||