From fdae16683c5fcdfbe2ba6977727c7a4230622b84 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Wed, 28 Feb 2024 21:37:08 +0000 Subject: [PATCH] add recipes --- recipes/wip/emulators/8086-emulator/recipe.toml | 5 +++++ recipes/wip/emulators/clementine/recipe.toml | 5 +++++ recipes/wip/emulators/martypc/recipe.toml | 9 +++++++++ recipes/wip/emulators/rboy/recipe.toml | 5 +++++ recipes/wip/emulators/rust-u2f/recipe.toml | 6 ++++++ recipes/wip/emulators/rustzx/recipe.toml | 11 +++++++++++ recipes/wip/emulators/rvemu/recipe.toml | 8 ++++++++ recipes/wip/emulators/scemu/recipe.toml | 5 +++++ 8 files changed, 54 insertions(+) create mode 100644 recipes/wip/emulators/8086-emulator/recipe.toml create mode 100644 recipes/wip/emulators/clementine/recipe.toml create mode 100644 recipes/wip/emulators/martypc/recipe.toml create mode 100644 recipes/wip/emulators/rboy/recipe.toml create mode 100644 recipes/wip/emulators/rust-u2f/recipe.toml create mode 100644 recipes/wip/emulators/rustzx/recipe.toml create mode 100644 recipes/wip/emulators/rvemu/recipe.toml create mode 100644 recipes/wip/emulators/scemu/recipe.toml diff --git a/recipes/wip/emulators/8086-emulator/recipe.toml b/recipes/wip/emulators/8086-emulator/recipe.toml new file mode 100644 index 000000000..09d02c03f --- /dev/null +++ b/recipes/wip/emulators/8086-emulator/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/YJDoc2/8086-Emulator" +[build] +template = "cargo" diff --git a/recipes/wip/emulators/clementine/recipe.toml b/recipes/wip/emulators/clementine/recipe.toml new file mode 100644 index 000000000..acc805bd9 --- /dev/null +++ b/recipes/wip/emulators/clementine/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/RIP-Comm/clementine" +[build] +template = "cargo" diff --git a/recipes/wip/emulators/martypc/recipe.toml b/recipes/wip/emulators/martypc/recipe.toml new file mode 100644 index 000000000..50afde34e --- /dev/null +++ b/recipes/wip/emulators/martypc/recipe.toml @@ -0,0 +1,9 @@ +#TODO maybe wrong script, see https://github.com/dbalsom/martypc/blob/version_0_2_0/BUILDING.md#building-for-linux +[source] +git = "https://github.com/dbalsom/martypc" +[build] +template = "custom" +script = """ +cd install +cookbook_cargo +""" diff --git a/recipes/wip/emulators/rboy/recipe.toml b/recipes/wip/emulators/rboy/recipe.toml new file mode 100644 index 000000000..bbff10c79 --- /dev/null +++ b/recipes/wip/emulators/rboy/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/mvdnes/rboy" +[build] +template = "cargo" diff --git a/recipes/wip/emulators/rust-u2f/recipe.toml b/recipes/wip/emulators/rust-u2f/recipe.toml new file mode 100644 index 000000000..547b23ff7 --- /dev/null +++ b/recipes/wip/emulators/rust-u2f/recipe.toml @@ -0,0 +1,6 @@ +#TODO missing script for GNU Make, see https://github.com/danstiner/rust-u2f#building +#TODO missing service for Redox +[source] +git = "https://github.com/danstiner/rust-u2f" +[build] +template = "custom" diff --git a/recipes/wip/emulators/rustzx/recipe.toml b/recipes/wip/emulators/rustzx/recipe.toml new file mode 100644 index 000000000..a29861906 --- /dev/null +++ b/recipes/wip/emulators/rustzx/recipe.toml @@ -0,0 +1,11 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rustzx/rustzx" +[build] +template = "custom" +dependencies = [ + "sdl2", +] +script = """ +cookbook_cargo_packages rustzx +""" diff --git a/recipes/wip/emulators/rvemu/recipe.toml b/recipes/wip/emulators/rvemu/recipe.toml new file mode 100644 index 000000000..d616ce457 --- /dev/null +++ b/recipes/wip/emulators/rvemu/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/d0iasm/rvemu" +[build] +template = "custom" +script = """ +cookbook_cargo_packages rvemu-cli +""" diff --git a/recipes/wip/emulators/scemu/recipe.toml b/recipes/wip/emulators/scemu/recipe.toml new file mode 100644 index 000000000..5c3586998 --- /dev/null +++ b/recipes/wip/emulators/scemu/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/sha0coder/scemu" +[build] +template = "cargo" -- GitLab