From d0249be5dd2444eb8832f34c89dd93b20d9a4ec3 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Fri, 1 Mar 2024 02:39:55 +0000 Subject: [PATCH] add recipes --- recipes/wip/games/vong/recipe.toml | 5 +++++ recipes/wip/net/crab-dlna/recipe.toml | 5 +++++ recipes/wip/net/spis/recipe.toml | 8 ++++++++ recipes/wip/services/coppwr/recipe.toml | 9 +++++++++ recipes/wip/video/pipeline/recipe.toml | 16 ++++++++++++++++ 5 files changed, 43 insertions(+) create mode 100644 recipes/wip/games/vong/recipe.toml create mode 100644 recipes/wip/net/crab-dlna/recipe.toml create mode 100644 recipes/wip/net/spis/recipe.toml create mode 100644 recipes/wip/services/coppwr/recipe.toml create mode 100644 recipes/wip/video/pipeline/recipe.toml diff --git a/recipes/wip/games/vong/recipe.toml b/recipes/wip/games/vong/recipe.toml new file mode 100644 index 000000000..71b324059 --- /dev/null +++ b/recipes/wip/games/vong/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/simbleau/vong" +[build] +template = "cargo" diff --git a/recipes/wip/net/crab-dlna/recipe.toml b/recipes/wip/net/crab-dlna/recipe.toml new file mode 100644 index 000000000..d2997e5ae --- /dev/null +++ b/recipes/wip/net/crab-dlna/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/gabrielmagno/crab-dlna" +[build] +template = "cargo" diff --git a/recipes/wip/net/spis/recipe.toml b/recipes/wip/net/spis/recipe.toml new file mode 100644 index 000000000..08072da62 --- /dev/null +++ b/recipes/wip/net/spis/recipe.toml @@ -0,0 +1,8 @@ +#TODO maybe incomplete script, see the Makefile on the repository +[source] +git = "https://github.com/gbbirkisson/spis" +[build] +template = "custom" +script = """ +cookbook_cargo_packages spis-server +""" diff --git a/recipes/wip/services/coppwr/recipe.toml b/recipes/wip/services/coppwr/recipe.toml new file mode 100644 index 000000000..332d267be --- /dev/null +++ b/recipes/wip/services/coppwr/recipe.toml @@ -0,0 +1,9 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/dimtpap/coppwr" +rev = "f4e664b860b89801ec60eee479802f00af3cfdfc" +[build] +template = "cargo" +dependencies = [ + "pipewire", +] diff --git a/recipes/wip/video/pipeline/recipe.toml b/recipes/wip/video/pipeline/recipe.toml new file mode 100644 index 000000000..cf41c34c2 --- /dev/null +++ b/recipes/wip/video/pipeline/recipe.toml @@ -0,0 +1,16 @@ +#TODO Not compiled or tested +[source] +tar = "https://gitlab.com/schmiddi-on-mobile/pipeline/-/package_files/114831818/download" +[build] +template = "custom" +dependencies = [ + "gtk4", + "glib", + "libadwaita", + "gdk-pixbuf", +] +script = """ +cookbook_cargo +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/glib-2.0/schemas +cp -rv "${COOKBOOK_SOURCE}"/data/de.schmidhuberj.tubefeeder.gschema.xml "${COOKBOOK_STAGE}"/usr/share/glib-2.0/schemas +""" -- GitLab