diff --git a/cook.sh b/cook.sh index 652a016c9..c6f91249f 100755 --- a/cook.sh +++ b/cook.sh @@ -26,6 +26,13 @@ then xargo clean popd ;; + install) + mkdir -p root/bin + pushd build + #TODO xargo install --root "../root" $CARGOFLAGS + cp -v $(find target/x86_64-unknown-redox/debug/ -maxdepth 1 -type f ! -name "*.*") ../root/bin + popd + ;; fetch) git clone --recursive "$GIT" build ;; diff --git a/recipes/smith/root/.crates.toml b/recipes/smith/root/.crates.toml new file mode 100644 index 000000000..e69de29bb diff --git a/recipes/smith/root/bin/smith b/recipes/smith/root/bin/smith new file mode 100755 index 000000000..fc57dbff3 Binary files /dev/null and b/recipes/smith/root/bin/smith differ