From 7ee1fa9a962aadd2bde1ffe9efdd66eeaf999585 Mon Sep 17 00:00:00 2001 From: Ribbon <ribbon_45@proton.me> Date: Sun, 21 Apr 2024 14:48:35 +0000 Subject: [PATCH] Add recipes --- recipes/wip/games/leafish/recipe.toml | 9 +++++++++ recipes/wip/tools/rusync/recipe.toml | 5 +++++ recipes/wip/tools/skyspell/recipe.toml | 12 ++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 recipes/wip/games/leafish/recipe.toml create mode 100644 recipes/wip/tools/rusync/recipe.toml create mode 100644 recipes/wip/tools/skyspell/recipe.toml diff --git a/recipes/wip/games/leafish/recipe.toml b/recipes/wip/games/leafish/recipe.toml new file mode 100644 index 000000000..ff29d95ef --- /dev/null +++ b/recipes/wip/games/leafish/recipe.toml @@ -0,0 +1,9 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/Lea-fish/Leafish" +[build] +template = "cargo" +dependencies = [ + "gtk3", + "openssl1", +] diff --git a/recipes/wip/tools/rusync/recipe.toml b/recipes/wip/tools/rusync/recipe.toml new file mode 100644 index 000000000..21258e5b2 --- /dev/null +++ b/recipes/wip/tools/rusync/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/your-tools/rusync" +[build] +template = "cargo" diff --git a/recipes/wip/tools/skyspell/recipe.toml b/recipes/wip/tools/skyspell/recipe.toml new file mode 100644 index 000000000..2a8c80c92 --- /dev/null +++ b/recipes/wip/tools/skyspell/recipe.toml @@ -0,0 +1,12 @@ +#TODO missing an enchant backend and dictionary, see https://github.com/your-tools/skyspell#installation +[source] +git = "https://github.com/your-tools/skyspell" +[build] +template = "custom" +dependencies = [ + "sqlite3", + "enchant", +] +script = """ +cookbook_cargo_packages skyspell +""" -- GitLab