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", +]