flatcam/upgrade_geos.sh

7 lines
150 B
Bash
Raw Normal View History

2019-01-03 19:25:08 +00:00
#!/bin/sh
wget http://download.osgeo.org/geos/geos-3.4.2.tar.bz2
tar xjvf geos-3.4.2.tar.bz2
cd geos-3.4.2
./configure --prefix=/usr
make
make install