mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
17 lines
316 B
Bash
Executable File
17 lines
316 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build Path: /app/.heroku/python/
|
|
# Build Deps: libraries/sqlite
|
|
|
|
OUT_PREFIX=$1
|
|
|
|
source ./download_python
|
|
download_python "2.5.5"
|
|
|
|
# Protect 2.6 builds from parent Python (causes segfault during build).
|
|
unset LANG PYTHONHOME PYTHONPATH
|
|
|
|
cd src
|
|
./configure --prefix=$OUT_PREFIX
|
|
make
|
|
make install
|