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

first attempt at proj build

parent 58ecbd8a
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
# Build Path: /app/.heroku/vendor/
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/proj/proj-4.8.0.tar.gz'
curl -L $SOURCE_TARBALL | tar zx
cd proj-4.8.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