Skip to content

Commit 7d40937

Browse files
committed
pypy 2.6.0
1 parent 628ad0c commit 7d40937

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

builds/runtimes/pypy-2.6.0

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
# Build Path: /app/.heroku/python/
3+
# Build Deps: libraries/sqlite
4+
5+
# NOTICE: This formula only works for the cedar-14 stack, not cedar.
6+
7+
OUT_PREFIX=$1
8+
9+
echo "Building PyPy..."
10+
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy-2.6.0-linux64.tar.bz2'
11+
curl -L $SOURCE_TARBALL | tar jx
12+
cp -R pypy-2.6.0-linux64/* $OUT_PREFIX
13+
14+
ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python

0 commit comments

Comments
 (0)