update recipes

This commit is contained in:
Ribbon 2023-12-21 15:04:09 +00:00
parent 6be0093335
commit d78fa08fb2
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#TODO Not compiled or tested
#TODO rdev crate error
[source]
git = "https://github.com/ChrisVilches/horsetab"
[build]

View File

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