mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 12:24:17 +08:00
18 lines
408 B
TOML
18 lines
408 B
TOML
#TODO build instructions - https://github.com/openjdk/jdk17u/blob/master/doc/building.md
|
|
#TODO add supported autoconf options
|
|
[source]
|
|
git = "https://github.com/openjdk/jdk17u"
|
|
rev = "b78a848cc7ae5787d9ec9ea0ce843cd63b06efec"
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"fontconfig",
|
|
]
|
|
script = """
|
|
chmod a+x configure
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--enable-headless-only=yes
|
|
)
|
|
cookbook_configure
|
|
"""
|