Skip to content
Snippets Groups Projects
Verified Commit e31eb523 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

orbutils: Move launcher to its own folder

parent 9aaba070
No related branches found
No related tags found
No related merge requests found
...@@ -4,24 +4,16 @@ git = "https://gitlab.redox-os.org/redox-os/orbutils.git" ...@@ -4,24 +4,16 @@ git = "https://gitlab.redox-os.org/redox-os/orbutils.git"
[build] [build]
template = "custom" template = "custom"
script = """ script = """
ORIGINAL_SOURCE="${COOKBOOK_SOURCE}"
mkdir -pv "${COOKBOOK_STAGE}/ui" mkdir -pv "${COOKBOOK_STAGE}/ui"
cp -rv "${COOKBOOK_SOURCE}/apps" "${COOKBOOK_STAGE}/ui/apps" cp -rv "${COOKBOOK_SOURCE}/apps" "${COOKBOOK_STAGE}/ui/apps"
COOKBOOK_SOURCE="${ORIGINAL_SOURCE}/orbutils" for project in orbutils calculator launcher
"${COOKBOOK_CARGO}" install \ do
--path "${COOKBOOK_SOURCE}" \ "${COOKBOOK_CARGO}" install \
--root "${COOKBOOK_STAGE}/usr" \ --path "${COOKBOOK_SOURCE}/${project}" \
--locked \ --root "${COOKBOOK_STAGE}/usr" \
--no-track \ --locked \
${install_flags} --no-track \
${install_flags}
COOKBOOK_SOURCE="${ORIGINAL_SOURCE}/calculator" done
"${COOKBOOK_CARGO}" install \
--path "${COOKBOOK_SOURCE}" \
--root "${COOKBOOK_STAGE}/usr" \
--locked \
--no-track \
${install_flags}
""" """
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment