diff --git a/recipes/wip/dev/git-tools/gitlogue/recipe.toml b/recipes/wip/dev/git-tools/gitlogue/recipe.toml new file mode 100644 index 000000000..995192a09 --- /dev/null +++ b/recipes/wip/dev/git-tools/gitlogue/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/unhappychoice/gitlogue" +[build] +template = "cargo" diff --git a/recipes/wip/dev/training/gittype/recipe.toml b/recipes/wip/dev/training/gittype/recipe.toml new file mode 100644 index 000000000..f92f63f10 --- /dev/null +++ b/recipes/wip/dev/training/gittype/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/unhappychoice/gittype" +[build] +template = "cargo" diff --git a/recipes/wip/games/math/binbreak/recipe.toml b/recipes/wip/games/math/binbreak/recipe.toml new file mode 100644 index 000000000..13a358820 --- /dev/null +++ b/recipes/wip/games/math/binbreak/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/epic-64/binbreak" +[build] +template = "cargo" diff --git a/recipes/wip/image/other/oxvg/recipe.toml b/recipes/wip/image/other/oxvg/recipe.toml new file mode 100644 index 000000000..9d50790f7 --- /dev/null +++ b/recipes/wip/image/other/oxvg/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/noahbald/oxvg" +[build] +template = "custom" +script = """ +cookbook_cargo_packages oxvg +""" diff --git a/recipes/wip/terminal/asciiquarium/recipe.toml b/recipes/wip/terminal/asciiquarium/recipe.toml new file mode 100644 index 000000000..3bf31400b --- /dev/null +++ b/recipes/wip/terminal/asciiquarium/recipe.toml @@ -0,0 +1,14 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/cmatsuoka/asciiquarium" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/bin +cp "${COOKBOOK_SOURCE}"/asciiquarium "${COOKBOOK_STAGE}"/usr/bin/asciiquarium +chmod a+x "${COOKBOOK_STAGE}"/usr/bin/asciiquarium +""" +[package] +dependencies = [ + "perl", +] diff --git a/recipes/wip/terminal/cbonsai/recipe.toml b/recipes/wip/terminal/cbonsai/recipe.toml new file mode 100644 index 000000000..4c1a808d2 --- /dev/null +++ b/recipes/wip/terminal/cbonsai/recipe.toml @@ -0,0 +1,9 @@ +#TODO missing script for gnu make: https://gitlab.com/jallbrit/cbonsai#manual +[source] +git = "https://gitlab.com/jallbrit/cbonsai" +rev = "v1.4.2" +[build] +template = "custom" +dependencies = [ + "ncursesw", +] diff --git a/recipes/wip/terminal/pipes-sh/recipe.toml b/recipes/wip/terminal/pipes-sh/recipe.toml new file mode 100644 index 000000000..d42c62674 --- /dev/null +++ b/recipes/wip/terminal/pipes-sh/recipe.toml @@ -0,0 +1,16 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/pipeseroni/pipes.sh" +rev = "v1.3.0" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/bin +cp "${COOKBOOK_SOURCE}"/pipes.sh "${COOKBOOK_STAGE}"/usr/bin/pipes +chmod a+x "${COOKBOOK_STAGE}"/usr/bin/pipes +""" +[package] +dependencies = [ + "bash", + "ncurses", +] diff --git a/recipes/wip/tui/termlaunch/recipe.toml b/recipes/wip/tui/termlaunch/recipe.toml new file mode 100644 index 000000000..40844ea21 --- /dev/null +++ b/recipes/wip/tui/termlaunch/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/amaterasu-uwu-xd/termlaunch" +[build] +template = "cargo"