Update geos to version 3.6.2 (#450)

This commit is contained in:
Johannes Hoppe
2017-09-08 18:20:14 +02:00
committed by Kenneth Reitz
parent 17f992a106
commit e304405410
+5 -3
View File
@@ -10,14 +10,16 @@ hash -r
echo "Building geos..."
SOURCE_TARBALL='http://download.osgeo.org/geos/geos-3.4.3.tar.bz2'
VERSION=3.6.2
SOURCE_TARBALL="http://download.osgeo.org/geos/geos-${VERSION}.tar.bz2"
curl -L $SOURCE_TARBALL | tar xj
cd geos-3.4.3
pushd "geos-${VERSION}"
./configure --prefix=$OUT_PREFIX --enable-static=no &&
make
make install
# Cleanup
cd ..
popd