mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Find a cli that does raw zlib, fix zlib test file
This commit is contained in:
parent
5c454eb3a0
commit
2f6dec4183
2 changed files with 12 additions and 10 deletions
|
@ -96,6 +96,7 @@ end
|
|||
local BIN_BROTLI = if process.os == "macos" then "/opt/homebrew/bin/brotli" else "brotli"
|
||||
local BIN_GZIP = if process.os == "macos" then "/opt/homebrew/bin/gzip" else "gzip"
|
||||
local BIN_LZ4 = if process.os == "macos" then "/opt/homebrew/bin/lz4" else "lz4"
|
||||
local BIN_ZLIB = if process.os == "macos" then "/opt/homebrew/bin/pigz" else "pigz"
|
||||
|
||||
local function checkInstalled(program: string, args: { string }?)
|
||||
print("Checking if", program, "is installed")
|
||||
|
@ -109,7 +110,7 @@ end
|
|||
checkInstalled(BIN_BROTLI, { "--version" })
|
||||
checkInstalled(BIN_GZIP, { "--version" })
|
||||
checkInstalled(BIN_LZ4, { "--version" })
|
||||
-- checkInstalled("zlib", { "--version" })
|
||||
checkInstalled(BIN_ZLIB, { "--version" })
|
||||
|
||||
-- Run them to generate files
|
||||
|
||||
|
@ -163,14 +164,14 @@ local OUTPUT_FILES = {
|
|||
process = processLz4PrependSize,
|
||||
final = INPUT_FILE .. ".lz4",
|
||||
},
|
||||
-- {
|
||||
-- command = "zlib",
|
||||
-- format = "zlib" :: serde.CompressDecompressFormat,
|
||||
-- args = { "-c", INPUT_FILE },
|
||||
-- output = TEMP_FILE .. ".z",
|
||||
-- process = processNoop,
|
||||
-- final = INPUT_FILE .. ".z",
|
||||
-- },
|
||||
{
|
||||
command = BIN_ZLIB,
|
||||
format = "zlib" :: serde.CompressDecompressFormat,
|
||||
args = { "--best", "--zlib", TEMP_FILE },
|
||||
output = TEMP_FILE .. ".zz",
|
||||
process = processNoop,
|
||||
final = INPUT_FILE .. ".z",
|
||||
},
|
||||
}
|
||||
|
||||
for _, spec in OUTPUT_FILES do
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
xÚíŽÛ
Â0Eÿ™âu’þ1Aš¸èJIb{@B,A8<>]—tpZtTmº`tä.žPt˜<17>…\9i…ãiô
w©<77> u –'e rž,ü.}êJÑZþº2ê;%K-<2D>gŽÂ#MÏÈý×ÇŒ¶Ýöëð_ð°ìÍ
|
||||
xÚíŽŰ
Â0E˙™âu’ţ1AšÜ"KIśĆöţ€„X8Ź];dZtTmş`âČťžPt‹Óc!W™bEĆlâî¬`<60>u –§p <O)ň&ś}ęJŃZţ¸98ę+ĹĄ– gŽ"GWäţícĆ
|
||||
Űnű˙đźđ°ěÍ
|
Loading…
Add table
Reference in a new issue