redox/recipes/gui/orbutils/recipe.toml
2026-01-29 05:25:12 +07:00

21 lines
502 B
TOML

[source]
git = "https://gitlab.redox-os.org/redox-os/orbutils.git"
[build]
template = "custom"
script = """
DYNAMIC_INIT
mkdir -pv "${COOKBOOK_STAGE}/usr/share/ui"
cp -rv "${COOKBOOK_SOURCE}/apps" "${COOKBOOK_STAGE}/usr/share/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
"""