diff --git a/builds/libraries/autoconf b/builds/libraries/autoconf new file mode 100755 index 0000000000000000000000000000000000000000..50d7d82e88e63fc5dcf9249564957641c115c6b6 --- /dev/null +++ b/builds/libraries/autoconf @@ -0,0 +1,15 @@ +#!/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 diff --git a/builds/libraries/libffi b/builds/libraries/libffi index 83b22558bebc9ba0c51a4f4d4267fb2145c8ef59..8b791b55d2701d6873eddcd54489fb92d820f247 100755 --- a/builds/libraries/libffi +++ b/builds/libraries/libffi @@ -1,24 +1,14 @@ #!/usr/bin/env bash # Build Path: /app/.heroku/python/ +# Build Deps: libraries/autoconf 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 -cd .. - -# Use new Python path, containing autoconf. +# Use new path, containing autoconf. export PATH="/app/.heroku/python/bin/:$PATH" hash -r + echo "Building libffi..." SOURCE_TARBALL='https://github.com/atgreen/libffi/archive/master.tar.gz'