mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-26 23:04:19 +08:00
20 lines
469 B
TOML
20 lines
469 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/orbutils.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
mkdir -pv "${COOKBOOK_STAGE}/ui"
|
|
cp -rv "${COOKBOOK_SOURCE}/apps" "${COOKBOOK_STAGE}/ui/apps"
|
|
|
|
for project in orbutils calculator launcher
|
|
do
|
|
"${COOKBOOK_CARGO}" install \
|
|
--path "${COOKBOOK_SOURCE}/${project}" \
|
|
--root "${COOKBOOK_STAGE}/usr" \
|
|
--locked \
|
|
--no-track \
|
|
${install_flags}
|
|
done
|
|
"""
|