update recipes

This commit is contained in:
Ribbon 2023-12-21 13:55:41 +00:00
parent b03153dcea
commit 49fdd0c8c9
2 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#TODO Not compiled or tested
#TODO compilation error, missing mimalloc sys/syscall.h
[source]
git = "https://github.com/rhysd/hgrep"
rev = "85d7271d477a41708d89e1e7bc14e94dcab149ba"

View File

@ -3,7 +3,19 @@
git = "https://github.com/hickory-dns/hickory-dns"
rev = "408d0baca080d1b201cd33e616dc4abd160ef6c0"
[build]
template = "cargo"
template = "custom"
dependencies = [
"openssl1",
]
script = """
package="hickory-dns"
"${COOKBOOK_CARGO}" build \
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
--package "${package}" \
--release
--all-features
mkdir -pv "${COOKBOOK_STAGE}/bin"
cp -v \
"target/${TARGET}/release/${package}" \
"${COOKBOOK_STAGE}/bin/${package}"
"""