add recipes

This commit is contained in:
Ribbon 2024-03-07 09:43:34 +00:00
parent a02dbe3bfc
commit 5ef4bf10c2
10 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/omnibor/omnibor-rs"
[build]
template = "custom"
script = """
binary=omnibor
"${COOKBOOK_CARGO}" build \
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
--bin "${binary}" \
--release
--build-binary
mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
cp -v \
"target/${TARGET}/release/${binary}" \
"${COOKBOOK_STAGE}/usr/bin/${binary}"
"""

View File

@ -0,0 +1,15 @@
#TODO Not compiled or tested
[source]
tar = "https://bitcoincore.org/bin/bitcoin-core-26.0/bitcoin-26.0.tar.gz"
[build]
template = "custom"
dependencies = [
"boost",
"libevent",
]
script = """
COOKBOOK_CONFIGURE_FLAGS+=(
--disable-wallet
)
cookbook_configure
"""

View File

@ -0,0 +1,5 @@
#TODO missing runtime dependencies, see https://github.com/romanz/electrs/blob/master/doc/install.md#build-dependencies
[source]
git = "https://github.com/romanz/electrs"
[build]
template = "cargo"

View File

@ -0,0 +1,8 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/Davidson-Souza/Floresta"
[build]
template = "custom"
script = """
cookbook_cargo_packages florestad
"""

View File

@ -0,0 +1,5 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/wizardsardine/liana"
[build]
template = "cargo"

View File

@ -0,0 +1,5 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/ndelvalle/nakatoshi"
[build]
template = "cargo"

View File

@ -0,0 +1,8 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/ordinals/ord"
[build]
template = "cargo"
dependencies = [
"openssl1",
]

View File

@ -0,0 +1,5 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/gcarq/rusty-blockparser"
[build]
template = "cargo"

View File

@ -0,0 +1,16 @@
#TODO missing script for CMake, see https://github.com/endless-sky/endless-sky/blob/master/docs/readme-cmake.md#building-the-game
[source]
git = "https://github.com/endless-sky/endless-sky"
rev = "95e72950e1554392666fa41bb18c978868aa6611"
[build]
template = "custom"
dependencies = [
"sdl2",
"libpng",
"libjpeg",
"mesa",
"glew",
"openal",
"libmad",
"libuuid",
]

View File

@ -0,0 +1,5 @@
#TODO Not compiled or tested
[source]
git = "https://github.com/a137x/plutus-rustus"
[build]
template = "cargo"