mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-19 11:24:18 +08:00
Add recipes
This commit is contained in:
parent
8c8136bb6d
commit
a215b97287
26
recipes/wip/analysis/cutter/recipe.toml
Normal file
26
recipes/wip/analysis/cutter/recipe.toml
Normal file
@ -0,0 +1,26 @@
|
||||
#TODO maybe incomplete script, see https://cutter.re/docs/building.html
|
||||
[source]
|
||||
tar = "https://github.com/rizinorg/cutter/releases/download/v2.3.4/Cutter-v2.3.4-src.tar.gz"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"libzip",
|
||||
"zlib",
|
||||
"qt5-base",
|
||||
"qt5-svg",
|
||||
]
|
||||
script = """
|
||||
COOKBOOK_CONFIGURE="cmake"
|
||||
COOKBOOK_CONFIGURE_FLAGS=(
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DCMAKE_CROSSCOMPILING=True
|
||||
-DCMAKE_EXE_LINKER_FLAGS="-static"
|
||||
-DCMAKE_INSTALL_PREFIX="/"
|
||||
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
|
||||
-DCMAKE_SYSTEM_NAME=Generic
|
||||
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
|
||||
-DCMAKE_VERBOSE_MAKEFILE=On
|
||||
"${COOKBOOK_SOURCE}"
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
25
recipes/wip/analysis/netdata/recipe.toml
Normal file
25
recipes/wip/analysis/netdata/recipe.toml
Normal file
@ -0,0 +1,25 @@
|
||||
#TODO maybe incomplete script, see https://learn.netdata.cloud/docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/compile-from-source-code#building-netdata
|
||||
[source]
|
||||
tar = "https://github.com/netdata/netdata/releases/download/v1.46.1/netdata-v1.46.1.tar.gz"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"zlib",
|
||||
"libuv",
|
||||
"libuuid",
|
||||
]
|
||||
script = """
|
||||
COOKBOOK_CONFIGURE="cmake"
|
||||
COOKBOOK_CONFIGURE_FLAGS=(
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DCMAKE_CROSSCOMPILING=True
|
||||
-DCMAKE_EXE_LINKER_FLAGS="-static"
|
||||
-DCMAKE_INSTALL_PREFIX="/"
|
||||
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
|
||||
-DCMAKE_SYSTEM_NAME=Generic
|
||||
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
|
||||
-DCMAKE_VERBOSE_MAKEFILE=On
|
||||
"${COOKBOOK_SOURCE}"
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
5
recipes/wip/analysis/rizin/recipe.toml
Normal file
5
recipes/wip/analysis/rizin/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO missing script for meson, see https://github.com/rizinorg/rizin/blob/dev/BUILDING.md
|
||||
[source]
|
||||
tar = "https://github.com/rizinorg/rizin/releases/download/v0.7.3/rizin-src-v0.7.3.tar.xz"
|
||||
[build]
|
||||
template = "custom"
|
||||
5
recipes/wip/dev/other/silicon/recipe.toml
Normal file
5
recipes/wip/dev/other/silicon/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/Aloxaf/silicon"
|
||||
[build]
|
||||
template = "cargo"
|
||||
8
recipes/wip/fuse/rencfs/recipe.toml
Normal file
8
recipes/wip/fuse/rencfs/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/radumarias/rencfs"
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"libfuse3",
|
||||
]
|
||||
8
recipes/wip/games/open-world/all-is-cubes/recipe.toml
Normal file
8
recipes/wip/games/open-world/all-is-cubes/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/kpreid/all-is-cubes"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_packages all-is-cubes-desktop
|
||||
"""
|
||||
5
recipes/wip/games/strategy/tage/recipe.toml
Normal file
5
recipes/wip/games/strategy/tage/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/jacopograndi/tage"
|
||||
[build]
|
||||
template = "cargo"
|
||||
23
recipes/wip/libs/archives/libzip/recipe.toml
Normal file
23
recipes/wip/libs/archives/libzip/recipe.toml
Normal file
@ -0,0 +1,23 @@
|
||||
#TODO maybe incomplete script, see https://github.com/nih-at/libzip/blob/main/INSTALL.md
|
||||
[source]
|
||||
tar = "https://libzip.org/download/libzip-1.10.1.tar.gz"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"zlib",
|
||||
]
|
||||
script = """
|
||||
COOKBOOK_CONFIGURE="cmake"
|
||||
COOKBOOK_CONFIGURE_FLAGS=(
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DCMAKE_CROSSCOMPILING=True
|
||||
-DCMAKE_EXE_LINKER_FLAGS="-static"
|
||||
-DCMAKE_INSTALL_PREFIX="/"
|
||||
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}"
|
||||
-DCMAKE_SYSTEM_NAME=Generic
|
||||
-DCMAKE_SYSTEM_PROCESSOR="$(echo "${TARGET}" | cut -d - -f1)"
|
||||
-DCMAKE_VERBOSE_MAKEFILE=On
|
||||
"${COOKBOOK_SOURCE}"
|
||||
)
|
||||
cookbook_configure
|
||||
"""
|
||||
5
recipes/wip/net/sharing/microbin/recipe.toml
Normal file
5
recipes/wip/net/sharing/microbin/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/szabodanika/microbin"
|
||||
[build]
|
||||
template = "cargo"
|
||||
5
recipes/wip/security/breakmancer/recipe.toml
Normal file
5
recipes/wip/security/breakmancer/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://codeberg.org/timmc/breakmancer"
|
||||
[build]
|
||||
template = "cargo"
|
||||
Loading…
Reference in New Issue
Block a user