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}" """