diff --git a/recipes/wip/shells/brush/recipe.toml b/recipes/wip/shells/brush/recipe.toml
index 1a0ce04b63ae6302659349a21ae3c3b755059c46..4a2f0a57608145c803c77f921f060cc157e8fedf 100644
--- a/recipes/wip/shells/brush/recipe.toml
+++ b/recipes/wip/shells/brush/recipe.toml
@@ -1,4 +1,4 @@
-#TODO not compiled or tested
+#TODO redox is not supported by the procfs crate
 [source]
 git = "https://github.com/reubeno/brush"
 [build]
diff --git a/recipes/wip/web/gosub/recipe.toml b/recipes/wip/web/gosub/recipe.toml
index c4452465853b24313ccfec195651154d473fab7b..592a26789e24bb55a4f8337478ea69c9e733fa2c 100644
--- a/recipes/wip/web/gosub/recipe.toml
+++ b/recipes/wip/web/gosub/recipe.toml
@@ -4,6 +4,15 @@ git = "https://github.com/gosub-browser/gosub-engine"
 [build]
 template = "custom"
 script = """
-cookbook_cargo --bin gosub-parser css3-parser renderer \
-style-parser
+cookbook_cargo --bin gosub_engine
+BINS=(
+    gosub-parser
+    css3-parser
+    renderer
+    style-parser
+)
+for bin in "${BINS[@]}"
+do
+  ln -sv gosub_engine "${COOKBOOK_STAGE}/usr/bin/$bin"
+done
 """