Skip to content
Snippets Groups Projects
Commit 4553dafe authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

autoconf formula

parent 8aeceb00
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
# Build Path: /app/.heroku/python/
OUT_PREFIX=$1
echo "Building autoconf..."
SOURCE_TARBALL='http://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
\ No newline at end of file
#!/usr/bin/env bash #!/usr/bin/env bash
# Build Path: /app/.heroku/python/ # Build Path: /app/.heroku/python/
# Build Deps: libraries/autoconf
OUT_PREFIX=$1 OUT_PREFIX=$1
echo "Building autoconf..." # Use new path, containing autoconf.
SOURCE_TARBALL='http://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
cd ..
# Use new Python path, containing autoconf.
export PATH="/app/.heroku/python/bin/:$PATH" export PATH="/app/.heroku/python/bin/:$PATH"
hash -r hash -r
echo "Building libffi..." echo "Building libffi..."
SOURCE_TARBALL='https://github.com/atgreen/libffi/archive/master.tar.gz' SOURCE_TARBALL='https://github.com/atgreen/libffi/archive/master.tar.gz'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment