From 4f23474a808c72f3cab7159b79600816876bb06c Mon Sep 17 00:00:00 2001
From: Ribbon <ribbon_45@proton.me>
Date: Mon, 15 Jul 2024 08:53:07 +0000
Subject: [PATCH] Add recipes

---
 recipes/wip/demos/blockish/recipe.toml        | 8 ++++++++
 recipes/wip/demos/blockishfire/recipe.toml    | 5 +++++
 recipes/wip/demos/doomfire/recipe.toml        | 8 ++++++++
 recipes/wip/demos/pixels/recipe.toml          | 8 ++++++++
 recipes/wip/demos/rustubble/recipe.toml       | 8 ++++++++
 recipes/wip/games/other/terdle/recipe.toml    | 5 +++++
 recipes/wip/games/strategy/mazter/recipe.toml | 5 +++++
 recipes/wip/net/lan/ztui/recipe.toml          | 5 +++++
 recipes/wip/players/spoify/recipe.toml        | 5 +++++
 recipes/wip/players/tap/recipe.toml           | 5 +++++
 recipes/wip/security/otti/recipe.toml         | 5 +++++
 recipes/wip/terminal/ghostie/recipe.toml      | 5 +++++
 recipes/wip/terminal/terminal-yt/recipe.toml  | 5 +++++
 recipes/wip/text/revi/recipe.toml             | 5 +++++
 recipes/wip/text/svgbob/recipe.toml           | 8 ++++++++
 recipes/wip/time/litime/recipe.toml           | 5 +++++
 recipes/wip/time/timer-rs/recipe.toml         | 8 ++++++++
 17 files changed, 103 insertions(+)
 create mode 100644 recipes/wip/demos/blockish/recipe.toml
 create mode 100644 recipes/wip/demos/blockishfire/recipe.toml
 create mode 100644 recipes/wip/demos/doomfire/recipe.toml
 create mode 100644 recipes/wip/demos/pixels/recipe.toml
 create mode 100644 recipes/wip/demos/rustubble/recipe.toml
 create mode 100644 recipes/wip/games/other/terdle/recipe.toml
 create mode 100644 recipes/wip/games/strategy/mazter/recipe.toml
 create mode 100644 recipes/wip/net/lan/ztui/recipe.toml
 create mode 100644 recipes/wip/players/spoify/recipe.toml
 create mode 100644 recipes/wip/players/tap/recipe.toml
 create mode 100644 recipes/wip/security/otti/recipe.toml
 create mode 100644 recipes/wip/terminal/ghostie/recipe.toml
 create mode 100644 recipes/wip/terminal/terminal-yt/recipe.toml
 create mode 100644 recipes/wip/text/revi/recipe.toml
 create mode 100644 recipes/wip/text/svgbob/recipe.toml
 create mode 100644 recipes/wip/time/litime/recipe.toml
 create mode 100644 recipes/wip/time/timer-rs/recipe.toml

diff --git a/recipes/wip/demos/blockish/recipe.toml b/recipes/wip/demos/blockish/recipe.toml
new file mode 100644
index 000000000..a3fff317f
--- /dev/null
+++ b/recipes/wip/demos/blockish/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/yazgoo/blockish"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_examples euc gif tiny-skia
+"""
diff --git a/recipes/wip/demos/blockishfire/recipe.toml b/recipes/wip/demos/blockishfire/recipe.toml
new file mode 100644
index 000000000..2fd1819a7
--- /dev/null
+++ b/recipes/wip/demos/blockishfire/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/yazgoo/blockishfire"
+[build]
+template = "cargo"
diff --git a/recipes/wip/demos/doomfire/recipe.toml b/recipes/wip/demos/doomfire/recipe.toml
new file mode 100644
index 000000000..b2e4eb333
--- /dev/null
+++ b/recipes/wip/demos/doomfire/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/r-marques/doomfire"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages doomfire-minifb
+"""
diff --git a/recipes/wip/demos/pixels/recipe.toml b/recipes/wip/demos/pixels/recipe.toml
new file mode 100644
index 000000000..b62c3983f
--- /dev/null
+++ b/recipes/wip/demos/pixels/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/parasyte/pixels"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_examples conway invaders minimal-egui minimal-winit tiny-skia-winit
+"""
diff --git a/recipes/wip/demos/rustubble/recipe.toml b/recipes/wip/demos/rustubble/recipe.toml
new file mode 100644
index 000000000..22edc29b6
--- /dev/null
+++ b/recipes/wip/demos/rustubble/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/warpy-ai/rustubble"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_examples list_example menu_list_example poem progress_bar_example spinner_example stopwatch_example table_example text_area_example text_input_example timer_example viewport_example
+"""
diff --git a/recipes/wip/games/other/terdle/recipe.toml b/recipes/wip/games/other/terdle/recipe.toml
new file mode 100644
index 000000000..8f420bed2
--- /dev/null
+++ b/recipes/wip/games/other/terdle/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/neelkarma/terdle"
+[build]
+template = "cargo"
diff --git a/recipes/wip/games/strategy/mazter/recipe.toml b/recipes/wip/games/strategy/mazter/recipe.toml
new file mode 100644
index 000000000..c98c32eee
--- /dev/null
+++ b/recipes/wip/games/strategy/mazter/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/Canop/mazter"
+[build]
+template = "cargo"
diff --git a/recipes/wip/net/lan/ztui/recipe.toml b/recipes/wip/net/lan/ztui/recipe.toml
new file mode 100644
index 000000000..dbb916c60
--- /dev/null
+++ b/recipes/wip/net/lan/ztui/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/erikh/ztui"
+[build]
+template = "cargo"
diff --git a/recipes/wip/players/spoify/recipe.toml b/recipes/wip/players/spoify/recipe.toml
new file mode 100644
index 000000000..4b838f9d7
--- /dev/null
+++ b/recipes/wip/players/spoify/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/slyeet03/spoify"
+[build]
+template = "cargo"
diff --git a/recipes/wip/players/tap/recipe.toml b/recipes/wip/players/tap/recipe.toml
new file mode 100644
index 000000000..e555a2f9a
--- /dev/null
+++ b/recipes/wip/players/tap/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/timdubbins/tap"
+[build]
+template = "cargo"
diff --git a/recipes/wip/security/otti/recipe.toml b/recipes/wip/security/otti/recipe.toml
new file mode 100644
index 000000000..ed6110727
--- /dev/null
+++ b/recipes/wip/security/otti/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/dnaka91/otti"
+[build]
+template = "cargo"
diff --git a/recipes/wip/terminal/ghostie/recipe.toml b/recipes/wip/terminal/ghostie/recipe.toml
new file mode 100644
index 000000000..2fd57e444
--- /dev/null
+++ b/recipes/wip/terminal/ghostie/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/attriaayush/ghostie"
+[build]
+template = "cargo"
diff --git a/recipes/wip/terminal/terminal-yt/recipe.toml b/recipes/wip/terminal/terminal-yt/recipe.toml
new file mode 100644
index 000000000..81c4ae2cc
--- /dev/null
+++ b/recipes/wip/terminal/terminal-yt/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/jooooscha/terminal-yt"
+[build]
+template = "cargo"
diff --git a/recipes/wip/text/revi/recipe.toml b/recipes/wip/text/revi/recipe.toml
new file mode 100644
index 000000000..b260637ce
--- /dev/null
+++ b/recipes/wip/text/revi/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/revi-editor/revi"
+[build]
+template = "cargo"
diff --git a/recipes/wip/text/svgbob/recipe.toml b/recipes/wip/text/svgbob/recipe.toml
new file mode 100644
index 000000000..fa814e647
--- /dev/null
+++ b/recipes/wip/text/svgbob/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/ivanceras/svgbob"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages svgbob_cli
+"""
diff --git a/recipes/wip/time/litime/recipe.toml b/recipes/wip/time/litime/recipe.toml
new file mode 100644
index 000000000..0c55cc211
--- /dev/null
+++ b/recipes/wip/time/litime/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/ikornaselur/litime"
+[build]
+template = "cargo"
diff --git a/recipes/wip/time/timer-rs/recipe.toml b/recipes/wip/time/timer-rs/recipe.toml
new file mode 100644
index 000000000..4a7209ca0
--- /dev/null
+++ b/recipes/wip/time/timer-rs/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/pando85/timer"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages timer_core
+"""
-- 
GitLab