From 387abb7d75c1f9eb2f21ff7d952667f7c467f91a Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Fri, 1 Mar 2024 00:11:53 +0000 Subject: [PATCH] add recipes --- recipes/wip/emulators/gopher64/recipe.toml | 8 ++++++++ recipes/wip/emulators/jgenesis/recipe.toml | 11 +++++++++++ recipes/wip/emulators/rpsx/recipe.toml | 8 ++++++++ recipes/wip/net/moonfire-nvr-server/recipe.toml | 12 ++++++++++++ recipes/wip/net/vsd/recipe.toml | 11 +++++++++++ recipes/wip/video/gyroflow/recipe.toml | 11 +++++++++++ recipes/wip/video/smoothie-rs/recipe.toml | 5 +++++ recipes/wip/video/timelens/recipe.toml | 8 ++++++++ recipes/wip/video/vidmerger/recipe.toml | 8 ++++++++ 9 files changed, 82 insertions(+) create mode 100644 recipes/wip/emulators/gopher64/recipe.toml create mode 100644 recipes/wip/emulators/jgenesis/recipe.toml create mode 100644 recipes/wip/emulators/rpsx/recipe.toml create mode 100644 recipes/wip/net/moonfire-nvr-server/recipe.toml create mode 100644 recipes/wip/net/vsd/recipe.toml create mode 100644 recipes/wip/video/gyroflow/recipe.toml create mode 100644 recipes/wip/video/smoothie-rs/recipe.toml create mode 100644 recipes/wip/video/timelens/recipe.toml create mode 100644 recipes/wip/video/vidmerger/recipe.toml diff --git a/recipes/wip/emulators/gopher64/recipe.toml b/recipes/wip/emulators/gopher64/recipe.toml new file mode 100644 index 000000000..864f953df --- /dev/null +++ b/recipes/wip/emulators/gopher64/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/gopher64/gopher64" +[build] +template = "cargo" +dependencies = [ + "sdl2", +] diff --git a/recipes/wip/emulators/jgenesis/recipe.toml b/recipes/wip/emulators/jgenesis/recipe.toml new file mode 100644 index 000000000..e1e132d8e --- /dev/null +++ b/recipes/wip/emulators/jgenesis/recipe.toml @@ -0,0 +1,11 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/jsgroth/jgenesis" +[build] +template = "custom" +dependencies = [ + "sdl2", +] +script = """ +cookbook_cargo_packages jgenesis-cli +""" diff --git a/recipes/wip/emulators/rpsx/recipe.toml b/recipes/wip/emulators/rpsx/recipe.toml new file mode 100644 index 000000000..289d7a837 --- /dev/null +++ b/recipes/wip/emulators/rpsx/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/KieronJ/rpsx" +[build] +template = "cargo" +dependencies = [ + "sdl2", +] diff --git a/recipes/wip/net/moonfire-nvr-server/recipe.toml b/recipes/wip/net/moonfire-nvr-server/recipe.toml new file mode 100644 index 000000000..a289bbe0f --- /dev/null +++ b/recipes/wip/net/moonfire-nvr-server/recipe.toml @@ -0,0 +1,12 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/scottlamb/moonfire-nvr" +[build] +template = "custom" +dependencies = [ + "sqlite3", +] +script = """ +cd server +cookbook_cargo +""" diff --git a/recipes/wip/net/vsd/recipe.toml b/recipes/wip/net/vsd/recipe.toml new file mode 100644 index 000000000..5252a5d1a --- /dev/null +++ b/recipes/wip/net/vsd/recipe.toml @@ -0,0 +1,11 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/clitic/vsd" +[build] +template = "custom" +dependencies = [ + "ffmpeg6", +] +script = """ +cookbook_cargo_packages vsd +""" diff --git a/recipes/wip/video/gyroflow/recipe.toml b/recipes/wip/video/gyroflow/recipe.toml new file mode 100644 index 000000000..0c3211dd3 --- /dev/null +++ b/recipes/wip/video/gyroflow/recipe.toml @@ -0,0 +1,11 @@ +#TODO maybe missing dependencies, see https://github.com/gyroflow/gyroflow/blob/master/_scripts/linux.just +[source] +git = "https://github.com/gyroflow/gyroflow" +[build] +template = "cargo" +dependencies = [ + "fontconfig", + "freetype2", + "ffmpeg6", + "qt6-base", +] diff --git a/recipes/wip/video/smoothie-rs/recipe.toml b/recipes/wip/video/smoothie-rs/recipe.toml new file mode 100644 index 000000000..4e0027b0f --- /dev/null +++ b/recipes/wip/video/smoothie-rs/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/couleur-tweak-tips/smoothie-rs" +[build] +template = "cargo" diff --git a/recipes/wip/video/timelens/recipe.toml b/recipes/wip/video/timelens/recipe.toml new file mode 100644 index 000000000..c4a3ccd43 --- /dev/null +++ b/recipes/wip/video/timelens/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/timelens/timelens" +[build] +template = "cargo" +dependencies = [ + "gstreamer", +] diff --git a/recipes/wip/video/vidmerger/recipe.toml b/recipes/wip/video/vidmerger/recipe.toml new file mode 100644 index 000000000..47fd9ce24 --- /dev/null +++ b/recipes/wip/video/vidmerger/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/tgotwig/vidmerger" +[build] +template = "cargo" +dependencies = [ + "ffmpeg6", +] -- GitLab