From d306f65586f879fea1c267d509ea9c336009e380 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott <ian@iandouglasscott.com> Date: Mon, 14 Aug 2017 11:21:57 -0700 Subject: [PATCH] Add symlinks to uutils package --- recipes/uutils/recipe.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/recipes/uutils/recipe.sh b/recipes/uutils/recipe.sh index 38843263f..08bc6964c 100644 --- a/recipes/uutils/recipe.sh +++ b/recipes/uutils/recipe.sh @@ -1,2 +1,12 @@ GIT=https://github.com/redox-os/uutils.git CARGOFLAGS="--no-default-features --features redox" + +function recipe_stage { + mkdir -p "$1/bin" + ln -s uutils "$1/bin/chmod" + ln -s uutils "$1/bin/env" + ln -s uutils "$1/bin/expr" + ln -s uutils "$1/bin/install" + ln -s uutils "$1/bin/ls" + ln -s uutils "$1/bin/mktemp" +} -- GitLab