From 5047c6cfc523ad05ada4b6bab36ae94962c8894a Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Fri, 1 Mar 2024 01:05:47 +0000 Subject: [PATCH] add recipes --- recipes/wip/graphics/reve/recipe.toml | 8 ++++++++ recipes/wip/libs/libzimg/recipe.toml | 10 ++++++++++ recipes/wip/sound/soundboard/recipe.toml | 8 ++++++++ recipes/wip/video/av1an/recipe.toml | 11 +++++++++++ recipes/wip/video/vapoursynth/recipe.toml | 13 +++++++++++++ 5 files changed, 50 insertions(+) create mode 100644 recipes/wip/graphics/reve/recipe.toml create mode 100644 recipes/wip/libs/libzimg/recipe.toml create mode 100644 recipes/wip/sound/soundboard/recipe.toml create mode 100644 recipes/wip/video/av1an/recipe.toml create mode 100644 recipes/wip/video/vapoursynth/recipe.toml diff --git a/recipes/wip/graphics/reve/recipe.toml b/recipes/wip/graphics/reve/recipe.toml new file mode 100644 index 000000000..4ca336cda --- /dev/null +++ b/recipes/wip/graphics/reve/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/ONdraid/reve" +[build] +template = "custom" +script = """ +cookbook_cargo --features reve-cli reve-gui +""" diff --git a/recipes/wip/libs/libzimg/recipe.toml b/recipes/wip/libs/libzimg/recipe.toml new file mode 100644 index 000000000..32841a0bd --- /dev/null +++ b/recipes/wip/libs/libzimg/recipe.toml @@ -0,0 +1,10 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/sekrit-twc/zimg" +rev = "e5b0de6bebbcbc66732ed5afaafef6b2c7dfef87" +[build] +template = "custom" +script = """ +./autogen.sh +cookbook_configure +""" diff --git a/recipes/wip/sound/soundboard/recipe.toml b/recipes/wip/sound/soundboard/recipe.toml new file mode 100644 index 000000000..9e12ec279 --- /dev/null +++ b/recipes/wip/sound/soundboard/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/gamebooster/soundboard" +[build] +template = "custom" +script = """ +cookbook_cargo --features full +""" diff --git a/recipes/wip/video/av1an/recipe.toml b/recipes/wip/video/av1an/recipe.toml new file mode 100644 index 000000000..2fca23e55 --- /dev/null +++ b/recipes/wip/video/av1an/recipe.toml @@ -0,0 +1,11 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/master-of-zen/Av1an" +[build] +template = "custom" +dependencies = [ + "ffmpeg6", +] +script = """ +cookbook_cargo_packages av1an +""" diff --git a/recipes/wip/video/vapoursynth/recipe.toml b/recipes/wip/video/vapoursynth/recipe.toml new file mode 100644 index 000000000..c10572db7 --- /dev/null +++ b/recipes/wip/video/vapoursynth/recipe.toml @@ -0,0 +1,13 @@ +#TODO maybe wrong script, see https://vapoursynth.com/doc/installation.html#linux-and-os-x-compilation +[source] +git = "https://github.com/vapoursynth/vapoursynth" +rev = "3157049549a0940359b37004aeeeebd8f1db665e" +[build] +template = "custom" +dependencies = [ + "library1", +] +script = """ +./autogen.sh +cookbook_configure +""" -- GitLab