We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 628ad0c commit 7d40937Copy full SHA for 7d40937
builds/runtimes/pypy-2.6.0
@@ -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