Update proj.4 to version 4.9.3 (#451)

This commit is contained in:
Johannes Hoppe
2017-09-08 18:28:05 +02:00
committed by Kenneth Reitz
parent e304405410
commit a703d2febe
+5 -4
View File
@@ -10,14 +10,15 @@ hash -r
echo "Building gdal..."
SOURCE_TARBALL='http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
VERSION=4.9.3
SOURCE_TARBALL="http://download.osgeo.org/proj/proj-${VERSION}.tar.gz"
curl -L $SOURCE_TARBALL | tar zx
cd proj-4.8.0
./configure --prefix=$OUT_PREFIX --enable-static=no &&
pushd "proj-${VERSION}"
./configure --prefix=$OUT_PREFIX --enable-static=no
make
make install
# Cleanup
cd ..
popd