From 9ff009f138eb1fa815efb8005f479bf43eb783c4 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Mon, 15 Jul 2024 06:35:19 +0000 Subject: [PATCH] Add recipes --- recipes/wip/crypto/qrscan/recipe.toml | 5 +++++ recipes/wip/demos/avt/recipe.toml | 8 ++++++++ recipes/wip/demos/firework-rs/recipe.toml | 9 +++++++++ recipes/wip/demos/rain/recipe.toml | 8 ++++++++ recipes/wip/games/open-world/teloren/recipe.toml | 5 +++++ recipes/wip/graphics/terminal/kakikun/recipe.toml | 5 +++++ recipes/wip/image/other/sic/recipe.toml | 5 +++++ recipes/wip/net/bittorrent/transg-tui/recipe.toml | 8 ++++++++ recipes/wip/news/tuifeed/recipe.toml | 5 +++++ recipes/wip/search/scout/recipe.toml | 5 +++++ recipes/wip/ssh/fastssh/recipe.toml | 5 +++++ recipes/wip/storage/wiper/recipe.toml | 5 +++++ recipes/wip/time/rsclock/recipe.toml | 5 +++++ 13 files changed, 78 insertions(+) create mode 100644 recipes/wip/crypto/qrscan/recipe.toml create mode 100644 recipes/wip/demos/avt/recipe.toml create mode 100644 recipes/wip/demos/firework-rs/recipe.toml create mode 100644 recipes/wip/demos/rain/recipe.toml create mode 100644 recipes/wip/games/open-world/teloren/recipe.toml create mode 100644 recipes/wip/graphics/terminal/kakikun/recipe.toml create mode 100644 recipes/wip/image/other/sic/recipe.toml create mode 100644 recipes/wip/net/bittorrent/transg-tui/recipe.toml create mode 100644 recipes/wip/news/tuifeed/recipe.toml create mode 100644 recipes/wip/search/scout/recipe.toml create mode 100644 recipes/wip/ssh/fastssh/recipe.toml create mode 100644 recipes/wip/storage/wiper/recipe.toml create mode 100644 recipes/wip/time/rsclock/recipe.toml diff --git a/recipes/wip/crypto/qrscan/recipe.toml b/recipes/wip/crypto/qrscan/recipe.toml new file mode 100644 index 000000000..428a3cf92 --- /dev/null +++ b/recipes/wip/crypto/qrscan/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/sayanarijit/qrscan" +[build] +template = "cargo" diff --git a/recipes/wip/demos/avt/recipe.toml b/recipes/wip/demos/avt/recipe.toml new file mode 100644 index 000000000..94a9bbced --- /dev/null +++ b/recipes/wip/demos/avt/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/asciinema/avt" +[build] +template = "custom" +script = """ +cookbook_cargo_examples text +""" diff --git a/recipes/wip/demos/firework-rs/recipe.toml b/recipes/wip/demos/firework-rs/recipe.toml new file mode 100644 index 000000000..104d88aa3 --- /dev/null +++ b/recipes/wip/demos/firework-rs/recipe.toml @@ -0,0 +1,9 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Wayoung7/firework-rs" +[build] +template = "custom" +script = """ +cookbook_cargo_packages firework-rs +cookbook_cargo_examples fountain heart vortex +""" diff --git a/recipes/wip/demos/rain/recipe.toml b/recipes/wip/demos/rain/recipe.toml new file mode 100644 index 000000000..cf22e0ef2 --- /dev/null +++ b/recipes/wip/demos/rain/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/saschagrunert/rain" +[build] +template = "custom" +script = """ +cookbook_cargo_examples demo +""" diff --git a/recipes/wip/games/open-world/teloren/recipe.toml b/recipes/wip/games/open-world/teloren/recipe.toml new file mode 100644 index 000000000..eda5d83de --- /dev/null +++ b/recipes/wip/games/open-world/teloren/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/zesterer/teloren" +[build] +template = "cargo" diff --git a/recipes/wip/graphics/terminal/kakikun/recipe.toml b/recipes/wip/graphics/terminal/kakikun/recipe.toml new file mode 100644 index 000000000..e4cade25b --- /dev/null +++ b/recipes/wip/graphics/terminal/kakikun/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/file-acomplaint/kakikun" +[build] +template = "cargo" diff --git a/recipes/wip/image/other/sic/recipe.toml b/recipes/wip/image/other/sic/recipe.toml new file mode 100644 index 000000000..b96407794 --- /dev/null +++ b/recipes/wip/image/other/sic/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/foresterre/sic" +[build] +template = "cargo" diff --git a/recipes/wip/net/bittorrent/transg-tui/recipe.toml b/recipes/wip/net/bittorrent/transg-tui/recipe.toml new file mode 100644 index 000000000..36cad9696 --- /dev/null +++ b/recipes/wip/net/bittorrent/transg-tui/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/PanAeon/transg-tui" +[build] +template = "cargo" +dependencies = [ + "openssl1", +] diff --git a/recipes/wip/news/tuifeed/recipe.toml b/recipes/wip/news/tuifeed/recipe.toml new file mode 100644 index 000000000..2fe8bf328 --- /dev/null +++ b/recipes/wip/news/tuifeed/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/veeso/tuifeed" +[build] +template = "cargo" diff --git a/recipes/wip/search/scout/recipe.toml b/recipes/wip/search/scout/recipe.toml new file mode 100644 index 000000000..4e9acbf44 --- /dev/null +++ b/recipes/wip/search/scout/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/jhbabon/scout" +[build] +template = "cargo" diff --git a/recipes/wip/ssh/fastssh/recipe.toml b/recipes/wip/ssh/fastssh/recipe.toml new file mode 100644 index 000000000..88b911591 --- /dev/null +++ b/recipes/wip/ssh/fastssh/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Julien-R44/fast-ssh" +[build] +template = "cargo" diff --git a/recipes/wip/storage/wiper/recipe.toml b/recipes/wip/storage/wiper/recipe.toml new file mode 100644 index 000000000..6cfe641aa --- /dev/null +++ b/recipes/wip/storage/wiper/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/ikebastuz/wiper" +[build] +template = "cargo" diff --git a/recipes/wip/time/rsclock/recipe.toml b/recipes/wip/time/rsclock/recipe.toml new file mode 100644 index 000000000..93c8d96bd --- /dev/null +++ b/recipes/wip/time/rsclock/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/valebes/rsClock" +[build] +template = "cargo" -- GitLab