From 30b01b4326c5063b864a210b252795cb9202815d Mon Sep 17 00:00:00 2001 From: Ron Williams Date: Tue, 9 Jan 2024 16:23:24 -0800 Subject: [PATCH] correct install path for orbutils and orbterm --- recipes/gui/orbterm/recipe.toml | 8 ++++++-- recipes/gui/orbutils/recipe.toml | 15 ++++++++++++--- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/recipes/gui/orbterm/recipe.toml b/recipes/gui/orbterm/recipe.toml index 2d247c14a..84aefb2d9 100644 --- a/recipes/gui/orbterm/recipe.toml +++ b/recipes/gui/orbterm/recipe.toml @@ -4,8 +4,12 @@ git = "https://gitlab.redox-os.org/redox-os/orbterm.git" [build] template = "custom" script = """ -COOKBOOK_STAGE="${COOKBOOK_STAGE}/ui" -cookbook_cargo +"${COOKBOOK_CARGO}" install \ + --path "${COOKBOOK_SOURCE}" \ + --root "${COOKBOOK_STAGE}/ui" \ + --locked \ + --no-track \ + ${install_flags} """ [package] diff --git a/recipes/gui/orbutils/recipe.toml b/recipes/gui/orbutils/recipe.toml index b38bb8302..9e36357db 100644 --- a/recipes/gui/orbutils/recipe.toml +++ b/recipes/gui/orbutils/recipe.toml @@ -4,12 +4,21 @@ git = "https://gitlab.redox-os.org/redox-os/orbutils.git" [build] template = "custom" script = """ -COOKBOOK_STAGE="${COOKBOOK_STAGE}/ui" ORIGINAL_SOURCE="${COOKBOOK_SOURCE}" COOKBOOK_SOURCE="${ORIGINAL_SOURCE}/orbutils" -cookbook_cargo +"${COOKBOOK_CARGO}" install \ + --path "${COOKBOOK_SOURCE}" \ + --root "${COOKBOOK_STAGE}/ui" \ + --locked \ + --no-track \ + ${install_flags} COOKBOOK_SOURCE="${ORIGINAL_SOURCE}/calculator" -cookbook_cargo +"${COOKBOOK_CARGO}" install \ + --path "${COOKBOOK_SOURCE}" \ + --root "${COOKBOOK_STAGE}/ui" \ + --locked \ + --no-track \ + ${install_flags} """