From adedb15da5a710fbc7d8666720cdc2fd667dc10c Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 9 Jun 2024 22:42:10 +0000 Subject: [PATCH] Update recipes --- recipes/wip/net/meli/recipe.toml | 2 +- recipes/wip/tools/mosh/recipe.toml | 2 +- recipes/wip/tools/posixutils-rs/recipe.toml | 27 +++++++++++++++++++-- 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/recipes/wip/net/meli/recipe.toml b/recipes/wip/net/meli/recipe.toml index a8cb523a..82aab325 100644 --- a/recipes/wip/net/meli/recipe.toml +++ b/recipes/wip/net/meli/recipe.toml @@ -1,4 +1,4 @@ -#TODO not compiled or tested +#TODO ahash crate error [source] git = "https://git.meli-email.org/meli/meli" [build] diff --git a/recipes/wip/tools/mosh/recipe.toml b/recipes/wip/tools/mosh/recipe.toml index 8302a982..f5dcad4f 100644 --- a/recipes/wip/tools/mosh/recipe.toml +++ b/recipes/wip/tools/mosh/recipe.toml @@ -1,4 +1,4 @@ -#TODO not compiled or tested +#TODO missing header files [source] tar = "https://github.com/mobile-shell/mosh/releases/download/mosh-1.4.0/mosh-1.4.0.tar.gz" [build] diff --git a/recipes/wip/tools/posixutils-rs/recipe.toml b/recipes/wip/tools/posixutils-rs/recipe.toml index c49fdb2c..22a99c63 100644 --- a/recipes/wip/tools/posixutils-rs/recipe.toml +++ b/recipes/wip/tools/posixutils-rs/recipe.toml @@ -4,6 +4,29 @@ git = "https://github.com/rustcoreutils/posixutils-rs" [build] template = "custom" script = """ -cookbook_cargo_packages calc datetime dev display file \ -fs misc pathnames plib process screen sys text tree users xform +cookbook_cargo + +BIN=( + calc + datetime + dev + display + file + fs + misc + pathnames + plib + process + screen + sys + text + tree + users + xform +) + +for bin in "${BINS[@]}" +do + ln -sv coreutils "${COOKBOOK_STAGE}/usr/bin/$bin" +done """