mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 21:04:18 +08:00
add recipes
This commit is contained in:
parent
a02dbe3bfc
commit
5ef4bf10c2
17
recipes/wip/dev/omnibor-rs/recipe.toml
Normal file
17
recipes/wip/dev/omnibor-rs/recipe.toml
Normal 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}"
|
||||
"""
|
||||
15
recipes/wip/finance/bitcoin-core/recipe.toml
Normal file
15
recipes/wip/finance/bitcoin-core/recipe.toml
Normal 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
|
||||
"""
|
||||
5
recipes/wip/finance/electrs/recipe.toml
Normal file
5
recipes/wip/finance/electrs/recipe.toml
Normal 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"
|
||||
8
recipes/wip/finance/floresta/recipe.toml
Normal file
8
recipes/wip/finance/floresta/recipe.toml
Normal 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
|
||||
"""
|
||||
5
recipes/wip/finance/liana/recipe.toml
Normal file
5
recipes/wip/finance/liana/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO Not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/wizardsardine/liana"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/finance/nakatoshi/recipe.toml
Normal file
5
recipes/wip/finance/nakatoshi/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO Not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ndelvalle/nakatoshi"
|
||||
[build]
|
||||
template = "cargo"
|
||||
8
recipes/wip/finance/ord/recipe.toml
Normal file
8
recipes/wip/finance/ord/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO Not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ordinals/ord"
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"openssl1",
|
||||
]
|
||||
5
recipes/wip/finance/rusty-blockparser/recipe.toml
Normal file
5
recipes/wip/finance/rusty-blockparser/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO Not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/gcarq/rusty-blockparser"
|
||||
[build]
|
||||
template = "cargo"
|
||||
16
recipes/wip/games/endless-sky/recipe.toml
Normal file
16
recipes/wip/games/endless-sky/recipe.toml
Normal 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",
|
||||
]
|
||||
5
recipes/wip/security/plutus-rustus/recipe.toml
Normal file
5
recipes/wip/security/plutus-rustus/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO Not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/a137x/plutus-rustus"
|
||||
[build]
|
||||
template = "cargo"
|
||||
Loading…
Reference in New Issue
Block a user