From 6218c5e46445c5194079817f5b2834abfdd6777c Mon Sep 17 00:00:00 2001 From: Ribbon Date: Tue, 1 Oct 2024 13:09:34 +0000 Subject: [PATCH] Add recipes --- recipes/wip/analysis/binsider/recipe.toml | 5 +++++ recipes/wip/dev/web/vox/recipe.toml | 5 +++++ recipes/wip/fuse/oku-fs/recipe.toml | 11 +++++++++++ recipes/wip/net/p2p/oku/recipe.toml | 16 ++++++++++++++++ recipes/wip/services/busd/recipe.toml | 5 +++++ 5 files changed, 42 insertions(+) create mode 100644 recipes/wip/analysis/binsider/recipe.toml create mode 100644 recipes/wip/dev/web/vox/recipe.toml create mode 100644 recipes/wip/fuse/oku-fs/recipe.toml create mode 100644 recipes/wip/net/p2p/oku/recipe.toml create mode 100644 recipes/wip/services/busd/recipe.toml diff --git a/recipes/wip/analysis/binsider/recipe.toml b/recipes/wip/analysis/binsider/recipe.toml new file mode 100644 index 000000000..c654bae42 --- /dev/null +++ b/recipes/wip/analysis/binsider/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/orhun/binsider" +[build] +template = "cargo" diff --git a/recipes/wip/dev/web/vox/recipe.toml b/recipes/wip/dev/web/vox/recipe.toml new file mode 100644 index 000000000..6649f708e --- /dev/null +++ b/recipes/wip/dev/web/vox/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/emmyoh/vox" +[build] +template = "cargo" diff --git a/recipes/wip/fuse/oku-fs/recipe.toml b/recipes/wip/fuse/oku-fs/recipe.toml new file mode 100644 index 000000000..ae673c402 --- /dev/null +++ b/recipes/wip/fuse/oku-fs/recipe.toml @@ -0,0 +1,11 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/OkuBrowser/oku-fs" +[build] +template = "custom" +dependencies = [ + "libfuse3", +] +script = """ +cookbook_cargo --features fuse cli +""" diff --git a/recipes/wip/net/p2p/oku/recipe.toml b/recipes/wip/net/p2p/oku/recipe.toml new file mode 100644 index 000000000..7de458152 --- /dev/null +++ b/recipes/wip/net/p2p/oku/recipe.toml @@ -0,0 +1,16 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/OkuBrowser/oku" +[build] +template = "custom" +dependencies = [ + "gtk4", + "glib", + "pango", + "webkitgtk4", + "libfuse3", +] +script = """ +./prebuild.sh +cookbook_cargo +""" diff --git a/recipes/wip/services/busd/recipe.toml b/recipes/wip/services/busd/recipe.toml new file mode 100644 index 000000000..3a5ef9cdc --- /dev/null +++ b/recipes/wip/services/busd/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/dbus2/busd" +[build] +template = "cargo"