From 143a9556857311db2205494891ed9c22c0ec29f2 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Wed, 10 Dec 2025 02:12:52 -0300 Subject: [PATCH] Add recipes --- recipes/wip/dev/analysis/tinywatcher/recipe.toml | 5 +++++ recipes/wip/edu/nanocore/recipe.toml | 10 ++++++++++ recipes/wip/files/unf/recipe.toml | 5 +++++ recipes/wip/net/social/nostui/recipe.toml | 5 +++++ recipes/wip/text/rhyolite/recipe.toml | 13 +++++++++++++ recipes/wip/text/treemd/recipe.toml | 5 +++++ recipes/wip/web/dodeca/recipe.toml | 8 ++++++++ 7 files changed, 51 insertions(+) create mode 100644 recipes/wip/dev/analysis/tinywatcher/recipe.toml create mode 100644 recipes/wip/edu/nanocore/recipe.toml create mode 100644 recipes/wip/files/unf/recipe.toml create mode 100644 recipes/wip/net/social/nostui/recipe.toml create mode 100644 recipes/wip/text/rhyolite/recipe.toml create mode 100644 recipes/wip/text/treemd/recipe.toml create mode 100644 recipes/wip/web/dodeca/recipe.toml diff --git a/recipes/wip/dev/analysis/tinywatcher/recipe.toml b/recipes/wip/dev/analysis/tinywatcher/recipe.toml new file mode 100644 index 000000000..cf09d2e52 --- /dev/null +++ b/recipes/wip/dev/analysis/tinywatcher/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/tinywatcher/tinywatcher" +[build] +template = "cargo" diff --git a/recipes/wip/edu/nanocore/recipe.toml b/recipes/wip/edu/nanocore/recipe.toml new file mode 100644 index 000000000..f0d9ad828 --- /dev/null +++ b/recipes/wip/edu/nanocore/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/AfaanBilal/NanoCore" +[build] +template = "custom" +script = """ +cookbook_cargo +mkdir -pv "${COOKBOOK_STAGE}/usr/share/nanocore" +cp -rv "${COOKBOOK_SOURCE}"/programs/* "${COOKBOOK_STAGE}/usr/share/nanocore" +""" diff --git a/recipes/wip/files/unf/recipe.toml b/recipes/wip/files/unf/recipe.toml new file mode 100644 index 000000000..205fa1d80 --- /dev/null +++ b/recipes/wip/files/unf/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/io12/unf" +[build] +template = "cargo" diff --git a/recipes/wip/net/social/nostui/recipe.toml b/recipes/wip/net/social/nostui/recipe.toml new file mode 100644 index 000000000..f4677875c --- /dev/null +++ b/recipes/wip/net/social/nostui/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/akiomik/nostui" +[build] +template = "cargo" diff --git a/recipes/wip/text/rhyolite/recipe.toml b/recipes/wip/text/rhyolite/recipe.toml new file mode 100644 index 000000000..d4982a371 --- /dev/null +++ b/recipes/wip/text/rhyolite/recipe.toml @@ -0,0 +1,13 @@ +#TODO not compiled or tested +#TODO resource packaging: https://github.com/lockedmutex/rhyolite/blob/master/Cargo.toml#L43 +[source] +git = "https://github.com/lockedmutex/rhyolite" +[build] +template = "custom" +dependencies = [ + "freetype2", + "fontconfig", +] +script = """ +cookbook_cargo --profile release +""" diff --git a/recipes/wip/text/treemd/recipe.toml b/recipes/wip/text/treemd/recipe.toml new file mode 100644 index 000000000..6d3ae01b1 --- /dev/null +++ b/recipes/wip/text/treemd/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Epistates/treemd" +[build] +template = "cargo" diff --git a/recipes/wip/web/dodeca/recipe.toml b/recipes/wip/web/dodeca/recipe.toml new file mode 100644 index 000000000..39466af80 --- /dev/null +++ b/recipes/wip/web/dodeca/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/bearcove/dodeca" +[build] +template = "custom" +script = """ +cookbook_cargo_packages dodeca +"""