0721b0fe6d
Test / Create distribution (push) Successful in 1m16s
Test / Sandbox (push) Successful in 4m7s
Test / Hakurei (push) Successful in 6m28s
Test / ShareFS (push) Successful in 6m28s
Test / Sandbox (race detector) (push) Successful in 7m40s
Test / Hakurei (race detector) (push) Successful in 9m0s
Test / Flake checks (push) Successful in 1m7s
Signed-off-by: Ophestra <cat@gensokyo.uk>
48 lines
802 B
Go
48 lines
802 B
Go
package curl {
|
|
description = "command line tool and library for transferring data with URLs";
|
|
website = "https://curl.se";
|
|
anitya = 381;
|
|
|
|
version# = "8.21.0";
|
|
source = remoteTar {
|
|
url = "https://curl.se/download/curl-"+version+".tar.bz2";
|
|
checksum = "lJSm8bVjS0OmsarEdbvejdQdvXsb7yGarlr6oMtA9FW1EXOga8zZxa1LPtfaq_qX";
|
|
compress = bzip2;
|
|
};
|
|
|
|
// remove broken test
|
|
writable = true;
|
|
early = "\nchmod +w tests/data && rm -f tests/data/test459\n";
|
|
|
|
exec = make {
|
|
configure = {
|
|
"with-openssl";
|
|
"with-ca-bundle": "/system/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
"disable-smb";
|
|
};
|
|
|
|
check = [
|
|
"TFLAGS=" + jobsLFlagE,
|
|
"test-nonflaky",
|
|
];
|
|
};
|
|
|
|
inputs = [
|
|
perl,
|
|
python,
|
|
pkg-config,
|
|
diffutils,
|
|
|
|
libpsl,
|
|
openssl,
|
|
];
|
|
|
|
runtime = [
|
|
zlib,
|
|
zstd,
|
|
libpsl,
|
|
openssl,
|
|
];
|
|
}
|