diff --git a/recipes/curl/recipe.sh b/recipes/curl/recipe.sh
index 0bf0d3882973bca58f4b6312eb3d8a2a3b226523..988c35e3506d7eb7c0c53aed101d650774748d62 100644
--- a/recipes/curl/recipe.sh
+++ b/recipes/curl/recipe.sh
@@ -1,7 +1,7 @@
 VERSION="7.62.0"
 #TAR=https://curl.haxx.se/download/curl-$VERSION.tar.gz
 GIT=https://gitlab.redox-os.org/redox-os/curl.git
-GIT_BRANCH=redox
+BRANCH=redox
 BUILD_DEPENDS=(nghttp2 openssl zlib)
 DEPENDS="ca-certificates"
 
diff --git a/recipes/mesa/recipe.sh b/recipes/mesa/recipe.sh
index 861cb33a15dc3b4fc7d77bbfc336650023f366d7..16b053a382a3aad4a4ad778b1fa12442e7cf67bd 100644
--- a/recipes/mesa/recipe.sh
+++ b/recipes/mesa/recipe.sh
@@ -1,6 +1,6 @@
 GIT=https://gitlab.redox-os.org/redox-os/mesa.git
 GIT_UPSTREAM=git://anongit.freedesktop.org/mesa/mesa
-GIT_BRANCH=redox
+BRANCH=redox
 BUILD_DEPENDS=(expat llvm zlib)
 
 function recipe_version {
diff --git a/recipes/redoxerd/recipe.sh b/recipes/redoxerd/recipe.sh
new file mode 100755
index 0000000000000000000000000000000000000000..6b0fbc5ca2f30a784ecedb8c9d85c1d5313f09a2
--- /dev/null
+++ b/recipes/redoxerd/recipe.sh
@@ -0,0 +1,13 @@
+GIT=https://gitlab.redox-os.org/redox-os/redoxer.git
+
+function recipe_update {
+    cd daemon
+}
+
+function recipe_build {
+    cd daemon
+}
+
+function recipe_stage {
+    mv daemon/target target
+}
diff --git a/recipes/userutils/recipe.sh b/recipes/userutils/recipe.sh
index 13936c86ed65c37eee5c04607e08e9b06378f696..52b8d8187c9ef59be4aa50a990b692fee509f99f 100644
--- a/recipes/userutils/recipe.sh
+++ b/recipes/userutils/recipe.sh
@@ -28,7 +28,7 @@ function recipe_stage {
 
     for bin in "${BINS[@]}"
     do
-        cp -v "target/$TARGET/$build/$bin" "$1/bin"
+        "$STRIP" -v "target/$TARGET/$build/$bin" -o "$1/bin/$bin"
     done
 
     cp -Rv "res" "$1/etc"