Files
RedBear-OS/recipes/wip/dev/lang/erlang/recipe.toml
T
vasilito 637da791ff fix: rename cxx → gcc13/gcc-native (resolve package name conflict)
recipes/dev/gcc13 was claiming name='cxx' — conflicted with
local/recipes/dev/gcc-native also claiming 'cxx'. Renamed to match
directory names for unique package identification by the cookbook.
2026-07-12 19:15:26 +03:00

23 lines
478 B
TOML

[package]
name = "erlang"
version = "28.3.1"
#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
"""