mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-28 07:44:18 +08:00
38 lines
899 B
TOML
38 lines
899 B
TOML
[source]
|
|
tar = "https://github.com/openssl/openssl/releases/download/openssl-3.5.3/openssl-3.5.3.tar.gz"
|
|
blake3 = "e1622a4587c71c278355bf38ff5a619918bd51e3cd37214d53dd5345b187fc10"
|
|
patches = [ "redox.patch" ]
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"zlib",
|
|
"zstd"
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
ARCH="${TARGET%%-*}"
|
|
OS=$(echo "${TARGET}" | cut -d - -f3)
|
|
export ARFLAGS=cr
|
|
COOKBOOK_CONFIGURE="${COOKBOOK_SOURCE}/Configure"
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
no-tests
|
|
no-unit-test
|
|
zlib
|
|
enable-zstd
|
|
"${OS}-${ARCH}"
|
|
--prefix="/usr"
|
|
--openssldir="/etc/ssl"
|
|
)
|
|
|
|
if [ "${COOKBOOK_DYNAMIC}" = "1" ]; then
|
|
COOKBOOK_CONFIGURE_FLAGS+=(shared)
|
|
else
|
|
COOKBOOK_CONFIGURE_FLAGS+=(no-shared no-dso)
|
|
fi
|
|
|
|
"${COOKBOOK_CONFIGURE}" "${COOKBOOK_CONFIGURE_FLAGS[@]}"
|
|
"${COOKBOOK_MAKE}" -j1 # bug in make/ar
|
|
"${COOKBOOK_MAKE}" install_sw install_ssldirs DESTDIR="${COOKBOOK_STAGE}"
|
|
"""
|