From a8d2cc47e31719902ffe279236de7658c3ab66d6 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jeremy@system76.com> Date: Thu, 21 May 2020 15:36:59 -0600 Subject: [PATCH] Add orbterm recipe, fix missing repo dir --- recipes/orbterm/recipe.toml | 12 ++++++++++++ repo.sh | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 recipes/orbterm/recipe.toml diff --git a/recipes/orbterm/recipe.toml b/recipes/orbterm/recipe.toml new file mode 100644 index 000000000..0caa665dd --- /dev/null +++ b/recipes/orbterm/recipe.toml @@ -0,0 +1,12 @@ +[source] +git = "https://gitlab.redox-os.org/redox-os/orbterm.git" + +[build] +template = "custom" +script = """ +COOKBOOK_CARGO_FLAGS=( + --path "${COOKBOOK_SOURCE}" + --root "${COOKBOOK_STAGE}/ui" +) +cookbook_cargo +""" diff --git a/repo.sh b/repo.sh index b9e3e6b42..b661f0cda 100755 --- a/repo.sh +++ b/repo.sh @@ -82,6 +82,8 @@ do fi done +mkdir -p "$REPO" + for recipe in $recipes do if [ "recipes/$recipe/stage.tar.gz" -nt "$REPO/$recipe.tar.gz" ] -- GitLab