mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 04:44:19 +08:00
19 lines
298 B
TOML
19 lines
298 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/extrautils.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"xz"
|
|
]
|
|
script = """
|
|
# TODO: Can't be linked correctly yet
|
|
# DYNAMIC_INIT
|
|
|
|
if [ "${COOKBOOK_DYNAMIC}" != "1" ]; then
|
|
install_flags+=" --features=static"
|
|
fi
|
|
|
|
cookbook_cargo
|
|
"""
|