diff --git a/recipes/wip/net/meli/recipe.toml b/recipes/wip/net/meli/recipe.toml index a8cb523a6985ca30c43bd356aeb5e42870f1f0ac..82aab325d9c926738f3f13068e4911a1d2365ce6 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 8302a9829ed92cc713a579c0adae7b630239297a..f5dcad4ff234676c9fb69a11fcad7fdbe17c7e23 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 c49fdb2c22602bf521dec20b956c2965d2a1c752..22a99c636f2f9906e1c1b49f6f8b041e519da3b6 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 """