summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-09-16 23:37:02 -0500
committerAlexander M Pickering <alex@cogarr.net>2024-09-16 23:37:02 -0500
commit3b02323e6fa69201203ac62e4524013f91ddb17d (patch)
tree9f21c69fc25c29b092d57af47b35d74f007c38b8
parent9a3a92bf8c9a48f42729d030013641cbb2c6eaa1 (diff)
downloadportable-packaging-3b02323e6fa69201203ac62e4524013f91ddb17d.tar.gz
portable-packaging-3b02323e6fa69201203ac62e4524013f91ddb17d.tar.bz2
portable-packaging-3b02323e6fa69201203ac62e4524013f91ddb17d.zip
Export libressl
-rwxr-xr-xinit7
-rw-r--r--meta.lua5
2 files changed, 12 insertions, 0 deletions
diff --git a/init b/init
index 9e71dd4..77716c8 100755
--- a/init
+++ b/init
@@ -7,3 +7,10 @@ cd portable
7./autogen.sh 7./autogen.sh
8CC=gcc ./configure --host=x86_64-w64-mingw32 8CC=gcc ./configure --host=x86_64-w64-mingw32
9make 9make
10cp tls/.libs/libtls.a /root
11cp ssl/.libs/libbs.a /root
12cp ssl/.libs/libssl.a /root
13cp crypto/.libs/libcompat.a /root
14cp crypto/.libs/libcompatnoopt.a /root
15cp crypto/.libs/libcrypto.a /root
16
diff --git a/meta.lua b/meta.lua
index 5981866..171926f 100644
--- a/meta.lua
+++ b/meta.lua
@@ -14,6 +14,11 @@ builds["libressl-mingw64"] = {
14 }, 14 },
15 produces = { 15 produces = {
16 ["libssl.a"] = true, 16 ["libssl.a"] = true,
17 ["libtls.a"] = true,
18 ["libbs.a"] = true,
19 ["libcompat.a"] = true,
20 ["libcompatnoopt.a"] = true,
21 ["libcrypto.a"] = true,
17 }, 22 },
18 timeout = 600, --Jeez this takes forever 23 timeout = 600, --Jeez this takes forever
19} 24}