redox/recipes/gui/orbutils/recipe.toml
2024-05-02 12:28:59 -06:00

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
"""