From e0a5cfacea2eecf708586e31ba95cd175bc86e1c Mon Sep 17 00:00:00 2001 From: coolreader18 <33094578+coolreader18@users.noreply.github.com> Date: Mon, 12 Aug 2019 13:44:36 -0500 Subject: [PATCH] Add recipe for RustPython --- recipes/rustpython/recipe.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 recipes/rustpython/recipe.sh diff --git a/recipes/rustpython/recipe.sh b/recipes/rustpython/recipe.sh new file mode 100644 index 000000000..cdaa6787c --- /dev/null +++ b/recipes/rustpython/recipe.sh @@ -0,0 +1,10 @@ +GIT=https://github.com/RustPython/RustPython +BRANCH=redox-release +CARGOFLAGS=--no-default-features +export BUILDTIME_RUSTPYTHONPATH=/lib/rustpython/ + +function recipe_stage() { + dest="$(realpath "$1")" + mkdir -pv "$dest/lib/" + cp -r Lib "$dest/lib/rustpython" +} -- GitLab