mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-20 14:50:59 +00:00
15 lines
398 B
Bash
Executable File
15 lines
398 B
Bash
Executable File
#!/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-2.2-linux64.tar.bz2'
|
|
curl -L $SOURCE_TARBALL | tar jx
|
|
cp -R pypy-2.2-linux64/* $OUT_PREFIX
|
|
|
|
ln $OUT_PREFIX/bin/pypy $OUT_PREFIX/bin/python
|