mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
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
This commit is contained in:
Vendored
+4
-3
@@ -10,14 +10,15 @@ hash -r
|
||||
|
||||
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
|
||||
|
||||
cd gdal-1.11.1
|
||||
pushd "gdal-${VERSION}"
|
||||
./configure --prefix=$OUT_PREFIX --enable-static=no &&
|
||||
make
|
||||
make install
|
||||
|
||||
# Cleanup
|
||||
cd ..
|
||||
popd
|
||||
|
||||
Reference in New Issue
Block a user