diff --git a/recipes/wip/demos/rattles/recipe.toml b/recipes/wip/demos/rattles/recipe.toml new file mode 100644 index 00000000..5e32d7a1 --- /dev/null +++ b/recipes/wip/demos/rattles/recipe.toml @@ -0,0 +1,7 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/vyfor/rattles" +shallow_clone = true +[build] +template = "cargo" +cargoexamples = ["ratatui","showcase",] diff --git a/recipes/wip/dev/cargo-tools/cargo-heaptrack/recipe.toml b/recipes/wip/dev/cargo-tools/cargo-heaptrack/recipe.toml new file mode 100644 index 00000000..efa55666 --- /dev/null +++ b/recipes/wip/dev/cargo-tools/cargo-heaptrack/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/little-dude/cargo-heaptrack" +shallow_clone = true +[build] +template = "cargo" +[package] +dependencies = [ + "heaptrack", +] diff --git a/recipes/wip/games/shooter/teeworlds/recipe.toml b/recipes/wip/games/shooter/teeworlds/recipe.toml new file mode 100644 index 00000000..4936ee0d --- /dev/null +++ b/recipes/wip/games/shooter/teeworlds/recipe.toml @@ -0,0 +1,15 @@ +#TODO not compiled or tested +[source] +tar = "https://github.com/teeworlds/teeworlds/releases/download/0.7.5/teeworlds-0.7.5-src.tar.gz" +shallow_clone = true +[build] +template = "cmake" +cmakeflags = [ + "-GNinja", + "-DDOWNLOAD_GTEST=OFF", +] +dependencies = [ + "sdl2", + "freetype2", + "wavpack", +] diff --git a/recipes/wip/gnome/gnome-contacts/recipe.toml b/recipes/wip/gnome/gnome-contacts/recipe.toml new file mode 100644 index 00000000..d145031a --- /dev/null +++ b/recipes/wip/gnome/gnome-contacts/recipe.toml @@ -0,0 +1,18 @@ +#TODO not compiled or tested +[source] +tar = "https://download.gnome.org/sources/gnome-contacts/49/gnome-contacts-49.0.tar.xz" +[build] +template = "meson" +mesonflags = [ + "-Dcamera=false", + "-Dmanpage=false", + "-Dgoa=false", +] +dependencies = [ + "glib", + "gtk4", + "libadwaita", +] +dev-dependencies = [ + "host:blueprint" +] diff --git a/recipes/wip/graphics/editors/delineate/recipe.toml b/recipes/wip/graphics/editors/delineate/recipe.toml new file mode 100644 index 00000000..ed9becef --- /dev/null +++ b/recipes/wip/graphics/editors/delineate/recipe.toml @@ -0,0 +1,13 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/SeaDve/Delineate" +shallow_clone = true +[build] +template = "meson" +dependencies = [ + "gtk4", + "libadwaita", + "glib", + "gtksourceview", + "webkitgtk4", +] diff --git a/recipes/wip/other/chance/recipe.toml b/recipes/wip/other/chance/recipe.toml new file mode 100644 index 00000000..abde55aa --- /dev/null +++ b/recipes/wip/other/chance/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/zelikos/rannum" +shallow_clone = true +[build] +template = "meson" +dependencies = [ + "gtk4", + "libadwaita", +] diff --git a/recipes/wip/system/clipboard-project/recipe.toml b/recipes/wip/system/clipboard-project/recipe.toml new file mode 100644 index 00000000..f4dc4758 --- /dev/null +++ b/recipes/wip/system/clipboard-project/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Slackadays/Clipboard" +rev = "0.10.0" +shallow_clone = true +[build] +template = "cmake" +dependencies = [ + "libx11", +] diff --git a/recipes/wip/text/gram/recipe.toml b/recipes/wip/text/gram/recipe.toml new file mode 100644 index 00000000..2cd50f80 --- /dev/null +++ b/recipes/wip/text/gram/recipe.toml @@ -0,0 +1,14 @@ +#TODO not compiled or tested +# maybe x11 is needed: https://codeberg.org/GramEditor/gram/src/branch/main/script/linux#L23 +[source] +git = "https://codeberg.org/GramEditor/gram" +shallow_clone = true +[build] +template = "cargo" +cargopackages = ["gram"] +dependencies = [ + "fontconfig", + "openssl3", + "zstd", + "sqlite3", +]