mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 20:34:17 +08:00
22 lines
425 B
TOML
22 lines
425 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/orbterm.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}/ui"
|
|
cp -rv "${COOKBOOK_SOURCE}/apps" "${COOKBOOK_STAGE}/ui/apps"
|
|
|
|
"${COOKBOOK_CARGO}" install \
|
|
--path "${COOKBOOK_SOURCE}" \
|
|
--root "${COOKBOOK_STAGE}/usr" \
|
|
--locked \
|
|
--no-track \
|
|
${install_flags}
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"orbital"
|
|
]
|