Merge branch 'rustpython-recipe' into 'master'

Add recipe for RustPython

See merge request redox-os/cookbook!216
This commit is contained in:
Jeremy Soller 2019-08-12 21:54:57 +00:00
commit 7180601c59

View File

@ -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"
}