44 lines
1.0 KiB
TOML
44 lines
1.0 KiB
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = [
|
|
"--openssldir=/etc/ssl",
|
|
"--libdir=lib",
|
|
"shared",
|
|
"zlib-dynamic",
|
|
"no-tests"
|
|
]
|
|
make_vars = [ "EX_LIBS=-latomic" ]
|
|
make_test_vars = [ "HARNESS_JOBS=$(nproc)" ]
|
|
make_install_vars = [ "MANSUFFIX=ssl" ]
|
|
configure_file = "config"
|
|
skip_tests = true
|
|
build_32 = true
|
|
configure-lib32 = [
|
|
"linux-generic32",
|
|
"--openssldir=/etc/ssl",
|
|
"--libdir=lib32",
|
|
"shared",
|
|
"zlib-dynamic",
|
|
"no-tests"
|
|
]
|
|
|
|
[dependencies]
|
|
runtime = [ "glibc", "zlib-ng", "libatomic-chimera" ]
|
|
|
|
[dependencies.lib32]
|
|
runtime = [ "lib32-glibc", "lib32-zlib-ng", "lib32-libatomic-chimera" ]
|
|
|
|
[package]
|
|
description = "management tools and libraries relating to cryptography"
|
|
homepage = "https://www.openssl.org"
|
|
license = "Apache-2.0"
|
|
name = "openssl"
|
|
version = "3.6.1"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "b1bfedcd5b289ff22aee87c9d600f515767ebf45f77168cb6d64f231f518a82e"
|
|
url = "https://github.com/openssl/openssl/releases/download/openssl-$version/openssl-$version.tar.gz"
|