Files
heroku-buildpack-python/builds/runtimes/python-2.7.3
T
2014-08-23 08:57:32 +02:00

14 lines
226 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.7.3"
cd src
./configure --prefix=$OUT_PREFIX --enable-shared
make
make install