mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
15 lines
273 B
Bash
Executable File
15 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build Path: /app/.heroku/python/
|
|
|
|
OUT_PREFIX=$1
|
|
|
|
echo "Building autoconf..."
|
|
|
|
|
|
SOURCE_TARBALL='https://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz'
|
|
curl -L $SOURCE_TARBALL | tar xz
|
|
|
|
cd autoconf-2.68
|
|
./configure --prefix=$OUT_PREFIX
|
|
make
|
|
make install |