From 8d4808a05bb3d9986cf5eb900fb8b45cc6e2eef5 Mon Sep 17 00:00:00 2001
From: Ribbon <ribbon_45@proton.me>
Date: Sun, 14 Jul 2024 16:33:08 +0000
Subject: [PATCH] Add recipes

---
 recipes/wip/db/skytable/recipe.toml                 |  8 ++++++++
 recipes/wip/demos/tquic/recipe.toml                 | 10 ++++++++++
 recipes/wip/dev/patchers/hexpatch/recipe.toml       |  5 +++++
 recipes/wip/graphics/other/imageflow/recipe.toml    | 13 +++++++++++++
 recipes/wip/net/bittorrent/aquatic-udp/recipe.toml  |  9 +++++++++
 recipes/wip/net/http/sozu/recipe.toml               |  8 ++++++++
 recipes/wip/net/other/rathole/recipe.toml           |  5 +++++
 recipes/wip/net/server/doh-server/recipe.toml       |  5 +++++
 .../wip/net/server/encrypted-dns-server/recipe.toml |  5 +++++
 recipes/wip/players/ytermusic/recipe.toml           |  5 +++++
 recipes/wip/text/duat/recipe.toml                   |  5 +++++
 recipes/wip/tools/dirscan/recipe.toml               |  5 +++++
 recipes/wip/tools/fuc/recipe.toml                   |  8 ++++++++
 13 files changed, 91 insertions(+)
 create mode 100644 recipes/wip/db/skytable/recipe.toml
 create mode 100644 recipes/wip/demos/tquic/recipe.toml
 create mode 100644 recipes/wip/dev/patchers/hexpatch/recipe.toml
 create mode 100644 recipes/wip/graphics/other/imageflow/recipe.toml
 create mode 100644 recipes/wip/net/bittorrent/aquatic-udp/recipe.toml
 create mode 100644 recipes/wip/net/http/sozu/recipe.toml
 create mode 100644 recipes/wip/net/other/rathole/recipe.toml
 create mode 100644 recipes/wip/net/server/doh-server/recipe.toml
 create mode 100644 recipes/wip/net/server/encrypted-dns-server/recipe.toml
 create mode 100644 recipes/wip/players/ytermusic/recipe.toml
 create mode 100644 recipes/wip/text/duat/recipe.toml
 create mode 100644 recipes/wip/tools/dirscan/recipe.toml
 create mode 100644 recipes/wip/tools/fuc/recipe.toml

diff --git a/recipes/wip/db/skytable/recipe.toml b/recipes/wip/db/skytable/recipe.toml
new file mode 100644
index 000000000..b389b7a68
--- /dev/null
+++ b/recipes/wip/db/skytable/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/skytable/skytable"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages skysh skyd
+"""
diff --git a/recipes/wip/demos/tquic/recipe.toml b/recipes/wip/demos/tquic/recipe.toml
new file mode 100644
index 000000000..b600bbaf8
--- /dev/null
+++ b/recipes/wip/demos/tquic/recipe.toml
@@ -0,0 +1,10 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/Tencent/tquic"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages tquic_tools
+mv "${COOKBOOK_STAGE}/usr/bin/tquic_server" "${COOKBOOK_STAGE}/usr/bin/tquic-server"
+mv "${COOKBOOK_STAGE}/usr/bin/tquic_client" "${COOKBOOK_STAGE}/usr/bin/tquic-client"
+"""
diff --git a/recipes/wip/dev/patchers/hexpatch/recipe.toml b/recipes/wip/dev/patchers/hexpatch/recipe.toml
new file mode 100644
index 000000000..736fe9882
--- /dev/null
+++ b/recipes/wip/dev/patchers/hexpatch/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/Etto48/HexPatch"
+[build]
+template = "cargo"
diff --git a/recipes/wip/graphics/other/imageflow/recipe.toml b/recipes/wip/graphics/other/imageflow/recipe.toml
new file mode 100644
index 000000000..bb9ab9b3e
--- /dev/null
+++ b/recipes/wip/graphics/other/imageflow/recipe.toml
@@ -0,0 +1,13 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/imazen/imageflow"
+[build]
+template = "custom"
+dependencies = [
+    "openssl1",
+    "libpng",
+]
+script = """
+cookbook_cargo_packages imageflow_tool_lib
+mv "${COOKBOOK_STAGE}/usr/bin/imageflow_tool" "${COOKBOOK_STAGE}/usr/bin/imageflow-tool"
+"""
diff --git a/recipes/wip/net/bittorrent/aquatic-udp/recipe.toml b/recipes/wip/net/bittorrent/aquatic-udp/recipe.toml
new file mode 100644
index 000000000..9d2b9ee2a
--- /dev/null
+++ b/recipes/wip/net/bittorrent/aquatic-udp/recipe.toml
@@ -0,0 +1,9 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/greatest-ape/aquatic"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages aquatic_udp
+mv "${COOKBOOK_STAGE}/usr/bin/aquatic_udp" "${COOKBOOK_STAGE}/usr/bin/aquatic-udp"
+"""
diff --git a/recipes/wip/net/http/sozu/recipe.toml b/recipes/wip/net/http/sozu/recipe.toml
new file mode 100644
index 000000000..bad5b1033
--- /dev/null
+++ b/recipes/wip/net/http/sozu/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/sozu-proxy/sozu"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages sozu
+"""
diff --git a/recipes/wip/net/other/rathole/recipe.toml b/recipes/wip/net/other/rathole/recipe.toml
new file mode 100644
index 000000000..c3a56ae25
--- /dev/null
+++ b/recipes/wip/net/other/rathole/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/rapiz1/rathole"
+[build]
+template = "cargo"
diff --git a/recipes/wip/net/server/doh-server/recipe.toml b/recipes/wip/net/server/doh-server/recipe.toml
new file mode 100644
index 000000000..355c37ab5
--- /dev/null
+++ b/recipes/wip/net/server/doh-server/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/DNSCrypt/doh-server"
+[build]
+template = "cargo"
diff --git a/recipes/wip/net/server/encrypted-dns-server/recipe.toml b/recipes/wip/net/server/encrypted-dns-server/recipe.toml
new file mode 100644
index 000000000..58f49b37a
--- /dev/null
+++ b/recipes/wip/net/server/encrypted-dns-server/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/DNSCrypt/encrypted-dns-server"
+[build]
+template = "cargo"
diff --git a/recipes/wip/players/ytermusic/recipe.toml b/recipes/wip/players/ytermusic/recipe.toml
new file mode 100644
index 000000000..2f4b872b0
--- /dev/null
+++ b/recipes/wip/players/ytermusic/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/ccgauche/ytermusic"
+[build]
+template = "cargo"
diff --git a/recipes/wip/text/duat/recipe.toml b/recipes/wip/text/duat/recipe.toml
new file mode 100644
index 000000000..e68d7b22b
--- /dev/null
+++ b/recipes/wip/text/duat/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/AhoyISki/duat"
+[build]
+template = "cargo"
diff --git a/recipes/wip/tools/dirscan/recipe.toml b/recipes/wip/tools/dirscan/recipe.toml
new file mode 100644
index 000000000..34a075201
--- /dev/null
+++ b/recipes/wip/tools/dirscan/recipe.toml
@@ -0,0 +1,5 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/orf/dirscan"
+[build]
+template = "cargo"
diff --git a/recipes/wip/tools/fuc/recipe.toml b/recipes/wip/tools/fuc/recipe.toml
new file mode 100644
index 000000000..8b42ad059
--- /dev/null
+++ b/recipes/wip/tools/fuc/recipe.toml
@@ -0,0 +1,8 @@
+#TODO not compiled or tested
+[source]
+git = "https://github.com/SUPERCILEX/fuc"
+[build]
+template = "custom"
+script = """
+cookbook_cargo_packages cpz rmz
+"""
-- 
GitLab