From 0f2eccb10bb338239c57e9e3f17a0893c1a38c01 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Wed, 28 Feb 2024 20:55:20 +0000 Subject: [PATCH] add recipes --- recipes/wip/emulators/trapezoid/recipe.toml | 5 +++++ recipes/wip/net/simple-http-server/recipe.toml | 5 +++++ recipes/wip/sound/neothesia/recipe.toml | 8 ++++++++ recipes/wip/tools/rusty-psn-cli/recipe.toml | 11 +++++++++++ recipes/wip/tools/rusty-psn-gui/recipe.toml | 8 ++++++++ 5 files changed, 37 insertions(+) create mode 100644 recipes/wip/emulators/trapezoid/recipe.toml create mode 100644 recipes/wip/net/simple-http-server/recipe.toml create mode 100644 recipes/wip/sound/neothesia/recipe.toml create mode 100644 recipes/wip/tools/rusty-psn-cli/recipe.toml create mode 100644 recipes/wip/tools/rusty-psn-gui/recipe.toml diff --git a/recipes/wip/emulators/trapezoid/recipe.toml b/recipes/wip/emulators/trapezoid/recipe.toml new file mode 100644 index 000000000..1977a6403 --- /dev/null +++ b/recipes/wip/emulators/trapezoid/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/Amjad50/Trapezoid" +[build] +template = "cargo" diff --git a/recipes/wip/net/simple-http-server/recipe.toml b/recipes/wip/net/simple-http-server/recipe.toml new file mode 100644 index 000000000..f8a88573f --- /dev/null +++ b/recipes/wip/net/simple-http-server/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/TheWaWaR/simple-http-server" +[build] +template = "cargo" diff --git a/recipes/wip/sound/neothesia/recipe.toml b/recipes/wip/sound/neothesia/recipe.toml new file mode 100644 index 000000000..ffe951214 --- /dev/null +++ b/recipes/wip/sound/neothesia/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/PolyMeilex/Neothesia" +[build] +template = "custom" +script = """ +cookbook_cargo_packages neothesia +""" diff --git a/recipes/wip/tools/rusty-psn-cli/recipe.toml b/recipes/wip/tools/rusty-psn-cli/recipe.toml new file mode 100644 index 000000000..558abe142 --- /dev/null +++ b/recipes/wip/tools/rusty-psn-cli/recipe.toml @@ -0,0 +1,11 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/RainbowCookie32/rusty-psn" +[build] +template = "custom" +dependencies = [ + "openssl1", +] +script = """ +cookbook_cargo --features cli +""" diff --git a/recipes/wip/tools/rusty-psn-gui/recipe.toml b/recipes/wip/tools/rusty-psn-gui/recipe.toml new file mode 100644 index 000000000..8298b981f --- /dev/null +++ b/recipes/wip/tools/rusty-psn-gui/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/RainbowCookie32/rusty-psn" +[build] +template = "cargo" +dependencies = [ + "openssl1", +] -- GitLab