diff --git a/builds/runtimes/pypy-5.0.1 b/builds/runtimes/pypy-5.0.1 new file mode 100644 index 0000000000000000000000000000000000000000..267259e3539018d5031f2d4a52dd508ce18cb300 --- /dev/null +++ b/builds/runtimes/pypy-5.0.1 @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# Build Path: /app/.heroku/python/ +# Build Deps: libraries/sqlite + +# NOTICE: This formula only works for the cedar-14 stack, not cedar. + +OUT_PREFIX=$1 + +echo "Building PyPy..." +SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy-5.0.1-linux64.tar.bz2' +curl -L $SOURCE_TARBALL | tar jx +cp -R pypy-5.0.1-linux64/* $OUT_PREFIX + +ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python