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

first attempt at gdal build

parent 3ea07357
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
# Use new path, containing autoconf.
export PATH="/app/.heroku/python/bin/:$PATH"
hash -r
echo "Building gdal..."
SOURCE_TARBALL='http://download.osgeo.org/gdal/1.11.0/gdal-1.11.0.tar.gz'
curl -L $SOURCE_TARBALL | tar zx
cd gdal-1.11.0
./configure --prefix=$OUT_PREFIX &&
make
make install
# Cleanup
cd ..
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