Skip to content
Snippets Groups Projects
Commit f2899840 authored by Johannes Hoppe's avatar Johannes Hoppe Committed by Kenneth Reitz
Browse files

Update GDAL version to 1.11.5 (#432)

* Update GDAL version to 1.11.5

Update GDAL to latest bugfix release, see
http://trac.osgeo.org/gdal/wiki/Release/1.11.5-News

* Use pushd and popd in favor of cd
parent 1d37749e
No related branches found
No related tags found
No related merge requests found
...@@ -10,14 +10,15 @@ hash -r ...@@ -10,14 +10,15 @@ hash -r
echo "Building gdal..." echo "Building gdal..."
SOURCE_TARBALL='http://download.osgeo.org/gdal/1.11.1/gdal-1.11.1.tar.gz' VERSION="1.11.5"
SOURCE_TARBALL="http://download.osgeo.org/gdal/${VERSION}/gdal-${VERSION}.tar.gz"
curl -L $SOURCE_TARBALL | tar zx curl -L $SOURCE_TARBALL | tar zx
cd gdal-1.11.1 pushd "gdal-${VERSION}"
./configure --prefix=$OUT_PREFIX --enable-static=no && ./configure --prefix=$OUT_PREFIX --enable-static=no &&
make make
make install make install
# Cleanup # Cleanup
cd .. popd
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