mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 13:54:19 +08:00
Add recipes
This commit is contained in:
parent
6050f9ddbd
commit
a38b5749d7
8
recipes/wip/demos/contrast-renderer/recipe.toml
Normal file
8
recipes/wip/demos/contrast-renderer/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/Lichtso/contrast_renderer"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_examples showcase
|
||||
"""
|
||||
8
recipes/wip/demos/fonterator/recipe.toml
Normal file
8
recipes/wip/demos/fonterator/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ardaku/fonterator"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_examples main directions image raster
|
||||
"""
|
||||
15
recipes/wip/demos/pix-engine/recipe.toml
Normal file
15
recipes/wip/demos/pix-engine/recipe.toml
Normal file
@ -0,0 +1,15 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/lukexor/pix-engine"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"sdl2",
|
||||
"sdl2-image",
|
||||
"sdl2-mixer",
|
||||
"sdl2-ttf",
|
||||
"sdl-gfx",
|
||||
]
|
||||
script = """
|
||||
cookbook_cargo_examples maze 2d_raycasting 3d_raycasting asteroids colors fluid_simulation gui hello_world image light matrix shapes textures tree windows
|
||||
"""
|
||||
8
recipes/wip/demos/renderling/recipe.toml
Normal file
8
recipes/wip/demos/renderling/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/schell/renderling"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_packages example
|
||||
"""
|
||||
8
recipes/wip/demos/rsille/recipe.toml
Normal file
8
recipes/wip/demos/rsille/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/nidhoggfgg/rsille"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_examples anime-mix obj-mix cube cube-colorful imgille
|
||||
"""
|
||||
24
recipes/wip/dev/graphics/bonzomatic/recipe.toml
Normal file
24
recipes/wip/dev/graphics/bonzomatic/recipe.toml
Normal file
@ -0,0 +1,24 @@
|
||||
#TODO port to orbital
|
||||
# build instructions - https://github.com/Gargaj/Bonzomatic#linux
|
||||
[source]
|
||||
git = "https://github.com/Gargaj/Bonzomatic"
|
||||
[build]
|
||||
template = "custom"
|
||||
dependencies = [
|
||||
"mesa",
|
||||
]
|
||||
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
|
||||
"""
|
||||
9
recipes/wip/games/space/rust-belt/recipe.toml
Normal file
9
recipes/wip/games/space/rust-belt/recipe.toml
Normal file
@ -0,0 +1,9 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/johnthagen/rust-belt"
|
||||
[build]
|
||||
template = "cargo"
|
||||
dependencies = [
|
||||
"sdl2",
|
||||
"sdl2-mixer",
|
||||
]
|
||||
8
recipes/wip/graphics/converters/inkdrop/recipe.toml
Normal file
8
recipes/wip/graphics/converters/inkdrop/recipe.toml
Normal file
@ -0,0 +1,8 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/matze/inkdrop"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
cookbook_cargo_packages inkdrop-cli gcode-converter
|
||||
"""
|
||||
5
recipes/wip/graphics/shaders/shadertoy-rs/recipe.toml
Normal file
5
recipes/wip/graphics/shaders/shadertoy-rs/recipe.toml
Normal file
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/fmenozzi/shadertoy-rs"
|
||||
[build]
|
||||
template = "cargo"
|
||||
@ -0,0 +1,5 @@
|
||||
#TODO not compiled or tested
|
||||
[source]
|
||||
git = "https://github.com/ryanweideman/3d-terminal-renderer"
|
||||
[build]
|
||||
template = "cargo"
|
||||
Loading…
Reference in New Issue
Block a user