From d78fa08fb2e9ce1c9a6bac2fffbb631a9c0c98a9 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Thu, 21 Dec 2023 15:04:09 +0000 Subject: [PATCH] update recipes --- recipes/wip/horsetab/recipe.toml | 2 +- recipes/wip/humphrey/recipe.toml | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/recipes/wip/horsetab/recipe.toml b/recipes/wip/horsetab/recipe.toml index e46d3802d..203af168d 100644 --- a/recipes/wip/horsetab/recipe.toml +++ b/recipes/wip/horsetab/recipe.toml @@ -1,4 +1,4 @@ -#TODO Not compiled or tested +#TODO rdev crate error [source] git = "https://github.com/ChrisVilches/horsetab" [build] diff --git a/recipes/wip/humphrey/recipe.toml b/recipes/wip/humphrey/recipe.toml index 03173fdc2..5ed0afeba 100644 --- a/recipes/wip/humphrey/recipe.toml +++ b/recipes/wip/humphrey/recipe.toml @@ -4,13 +4,14 @@ git = "https://github.com/w-henderson/Humphrey" [build] template = "custom" script = """ +package="humphrey_server" "${COOKBOOK_CARGO}" build \ --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \ - --package "${humphrey_server}" \ + --package "${package}" \ --release --all-features mkdir -pv "${COOKBOOK_STAGE}/bin" cp -v \ - "target/${TARGET}/release/${humphrey_server}" \ - "${COOKBOOK_STAGE}/bin/${humphrey}_${humphrey_server}" + "target/${TARGET}/release/${package}" \ + "${COOKBOOK_STAGE}/bin/${package}" """