diff --git a/recipes/wip/dev/licensure/recipe.toml b/recipes/wip/dev/licensure/recipe.toml
index b34fe0b0b70cd2d0f173994f854c5b1ee83937f0..21c30641840a17fe67fb80cf5e745d821efbd21f 100644
--- a/recipes/wip/dev/licensure/recipe.toml
+++ b/recipes/wip/dev/licensure/recipe.toml
@@ -1,4 +1,4 @@
-#TODO Not compiled or tested
+#TODO compiled but not tested
 [source]
 git = "https://github.com/chasinglogic/licensure"
 [build]
diff --git a/recipes/wip/dev/lockdiff/recipe.toml b/recipes/wip/dev/lockdiff/recipe.toml
index c01e07953f6b48186f8370696ffe8bc5415ea2e8..edbb0906240c2aa6d5e563353323ae7ec9772fc9 100644
--- a/recipes/wip/dev/lockdiff/recipe.toml
+++ b/recipes/wip/dev/lockdiff/recipe.toml
@@ -1,4 +1,4 @@
-#TODO Not compiled or tested
+#TODO compiled but not tested
 [source]
 git = "https://github.com/your-tools/lockdiff"
 [build]
diff --git a/recipes/wip/dev/loco/recipe.toml b/recipes/wip/dev/loco/recipe.toml
index abd88d446000c33d7dd80c1c1e1e29254267d3bb..1f72b5163d33a0da6c88041175899cad0ea77dce 100644
--- a/recipes/wip/dev/loco/recipe.toml
+++ b/recipes/wip/dev/loco/recipe.toml
@@ -4,5 +4,14 @@ git = "https://github.com/loco-rs/loco"
 [build]
 template = "custom"
 script = """
-cookbook_cargo_packages loco-cli
+binary=loco-rs
+"${COOKBOOK_CARGO}" build \
+            --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
+            --bin "${binary}" \
+            --release
+            --cli
+        mkdir -pv "${COOKBOOK_STAGE}/usr/bin"
+        cp -v \
+            "target/${TARGET}/release/${binary}" \
+            "${COOKBOOK_STAGE}/usr/bin/${binary}"
 """