diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-11-07 12:56:36 -0600 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-11-07 12:56:36 -0600 |
commit | 13f576eef83034e0159ef7b2a49b011008f34984 (patch) | |
tree | 9c082f5d935cfe4abccfb43f582fe5aeeef5874b | |
parent | ff625e7287c6210a4b0e841eacfc58db38992623 (diff) | |
download | busybox-w32-packaging-13f576eef83034e0159ef7b2a49b011008f34984.tar.gz busybox-w32-packaging-13f576eef83034e0159ef7b2a49b011008f34984.tar.bz2 busybox-w32-packaging-13f576eef83034e0159ef7b2a49b011008f34984.zip |
Correct name
-rw-r--r-- | meta.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -15,14 +15,14 @@ local debug = { | |||
15 | } | 15 | } |
16 | local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} | 16 | local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} |
17 | local builds = {} | 17 | local builds = {} |
18 | for opti_k, opti_v, rel_k, rel_v, comp_k, comp_v in cartesian(optimizations, debug, compilers) do | 18 | for opti_k, opti_v, rel_k, rel_v, _, comp_v in cartesian(optimizations, debug, compilers) do |
19 | builds["busybox-w32-" .. opti_k .. "-" .. rel_k .. "-" .. comp_k] = { | 19 | builds["busybox-w32-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v] = { |
20 | timeout=600, | 20 | timeout=600, |
21 | image="image-" .. comp_v, | 21 | image="image-" .. comp_v, |
22 | requires = { | 22 | requires = { |
23 | {"git","busybox-w32"}, | 23 | {"git","busybox-w32"}, |
24 | {"cicd","libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_k .. ":include.tar.gz"}, | 24 | {"cicd","libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v .. ":include.tar.gz"}, |
25 | {"cicd","libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_k .. ":libtls.a"} | 25 | {"cicd","libressl-" .. opti_k .. "-" .. rel_k .. "-" .. comp_v .. ":libtls.a"} |
26 | }, | 26 | }, |
27 | produces = { | 27 | produces = { |
28 | ["busybox.exe"] = true | 28 | ["busybox.exe"] = true |