diff --git a/recipes/wip/demos/ratzilla/recipe.toml b/recipes/wip/demos/ratzilla/recipe.toml new file mode 100644 index 000000000..e948e3bcc --- /dev/null +++ b/recipes/wip/demos/ratzilla/recipe.toml @@ -0,0 +1,9 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/orhun/ratzilla" +[build] +template = "custom" +script = """ +cookbook_cargo_packages animations canvas-stress-test canvas-waves \ +colors-rgb demo demo2 minimal pong text-area user-input website world-map +""" diff --git a/recipes/wip/games/open-world/cytopia-rs/recipe.toml b/recipes/wip/games/open-world/cytopia-rs/recipe.toml new file mode 100644 index 000000000..543405364 --- /dev/null +++ b/recipes/wip/games/open-world/cytopia-rs/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://codeberg.org/Esther1024/pia-fork" +[build] +template = "cargo" diff --git a/recipes/wip/games/open-world/cytopia/recipe.toml b/recipes/wip/games/open-world/cytopia/recipe.toml new file mode 100644 index 000000000..edb201261 --- /dev/null +++ b/recipes/wip/games/open-world/cytopia/recipe.toml @@ -0,0 +1,33 @@ +#TODO not compiled or tested +# build instructions: https://github.com/CytopiaTeam/Cytopia/wiki/Build-instructions +[source] +git = "https://github.com/CytopiaTeam/Cytopia" +[build] +template = "custom" +dependencies = [ + "sdl2", + "sdl2-ttf", + "sdl2-image", + "openal", + "zlib", + "libogg", + "libvorbis", + "libpng", + "libnoise", + "imgui", +] +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 +""" diff --git a/recipes/wip/games/strategy/hammurabi/recipe.toml b/recipes/wip/games/strategy/hammurabi/recipe.toml new file mode 100644 index 000000000..7cc74a056 --- /dev/null +++ b/recipes/wip/games/strategy/hammurabi/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/stjepangolemac/hammurabi" +[build] +template = "cargo" diff --git a/recipes/wip/libs/graphics/libnoise/recipe.toml b/recipes/wip/libs/graphics/libnoise/recipe.toml new file mode 100644 index 000000000..7602eeed8 --- /dev/null +++ b/recipes/wip/libs/graphics/libnoise/recipe.toml @@ -0,0 +1,20 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/qknight/libnoise" +[build] +template = "custom" +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 +""" diff --git a/recipes/wip/net/server/dora/recipe.toml b/recipes/wip/net/server/dora/recipe.toml new file mode 100644 index 000000000..dbb9c4635 --- /dev/null +++ b/recipes/wip/net/server/dora/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/bluecatengineering/dora" +[build] +template = "custom" +script = """ +cookbook_cargo_packages dora-bin dora-cfg +""" diff --git a/recipes/wip/net/server/toe-beans/recipe.toml b/recipes/wip/net/server/toe-beans/recipe.toml new file mode 100644 index 000000000..397f61f9d --- /dev/null +++ b/recipes/wip/net/server/toe-beans/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://codeberg.org/black-cat/toe-beans" +[build] +template = "custom" +script = """ +cookbook_cargo_packages toe-beans +""" diff --git a/recipes/wip/time/zman/recipe.toml b/recipes/wip/time/zman/recipe.toml new file mode 100644 index 000000000..0ff2a6fc9 --- /dev/null +++ b/recipes/wip/time/zman/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/azzamsa/zman" +[build] +template = "cargo"