mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-21 15:20:58 +00:00
a1ed1d7b42
* skip pip install for pipenv * better * improvements * indent * chmod +x * export * skip uninstall too * pip freeze * Revert "skip uninstall too" This reverts commit faac96f62004f78c3d27a92cd865954fc7a3a53d. * better comments * redirect stderr to stdout
13 lines
337 B
Groff
Executable File
13 lines
337 B
Groff
Executable File
#!/usr/bin/env bash
|
|
# Build Path: /app/.heroku/python/
|
|
# Build Deps: libraries/sqlite
|
|
|
|
OUT_PREFIX=$1
|
|
|
|
echo "Building PyPy..."
|
|
SOURCE_TARBALL='https://bitbucket.org/pypy/pypy/downloads/pypy3-v5.7.1-linux64.tar.bz2'
|
|
curl -L $SOURCE_TARBALL | tar jx
|
|
cp -R pypy3-v5.7.1-linux64/* $OUT_PREFIX
|
|
|
|
ln $OUT_PREFIX/bin/pypy3 $OUT_PREFIX/bin/python
|