mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-28 07:44:18 +08:00
19 lines
432 B
TOML
19 lines
432 B
TOML
#TODO discover current status
|
|
# build instructions: https://www.erlang.org/doc/installation_guide/install
|
|
[source]
|
|
tar = "https://github.com/erlang/otp/releases/download/OTP-28.3.1/otp_src_28.3.1.tar.gz"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"openssl3",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
export ERL_TOP="${COOKBOOK_SOURCE}"
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--without-termcap
|
|
--enable-bootstrap-only
|
|
)
|
|
cookbook_configure
|
|
"""
|