diff --git a/recipes/wip/db/jdbrowser/recipe.toml b/recipes/wip/db/jdbrowser/recipe.toml index 6f6c24a16..987a8589e 100644 --- a/recipes/wip/db/jdbrowser/recipe.toml +++ b/recipes/wip/db/jdbrowser/recipe.toml @@ -1,4 +1,4 @@ -#TODO not compiled or tested +#TODO wayland-backend crate error [source] git = "https://github.com/Jkeyuk/JDbrowser" [build] diff --git a/recipes/wip/demos/appcui/recipe.toml b/recipes/wip/demos/appcui/recipe.toml index 2f01142a8..53a0a4243 100644 --- a/recipes/wip/demos/appcui/recipe.toml +++ b/recipes/wip/demos/appcui/recipe.toml @@ -1,4 +1,4 @@ -#TODO not compiled or tested +#TODO compiled but not tested [source] git = "https://github.com/gdt050579/AppCUI-rs" [build] diff --git a/recipes/wip/demos/ratzilla/recipe.toml b/recipes/wip/demos/ratzilla/recipe.toml index e948e3bcc..5f2168198 100644 --- a/recipes/wip/demos/ratzilla/recipe.toml +++ b/recipes/wip/demos/ratzilla/recipe.toml @@ -4,6 +4,17 @@ git = "https://github.com/orhun/ratzilla" [build] template = "custom" script = """ -cookbook_cargo_packages animations canvas-stress-test canvas-waves \ +recipe="$(basename "${COOKBOOK_RECIPE}")" + for package in animations canvas-stress-test canvas-waves \ colors-rgb demo demo2 minimal pong text-area user-input website world-map + do + "${COOKBOOK_CARGO}" build \ + --manifest-path "${COOKBOOK_SOURCE}/examples/${PACKAGE_PATH}/Cargo.toml" \ + --package "${package}" \ + --release \ + mkdir -pv "${COOKBOOK_STAGE}/usr/bin" + cp -v \ + "target/${TARGET}/${build_type}/examples/${package}" \ + "${COOKBOOK_STAGE}/usr/bin/${recipe}_${package}" + done """