mirror of
https://github.com/Denvi/FlatCAM.git
synced 2026-03-25 01:27:17 +01:00
7 lines
150 B
Bash
7 lines
150 B
Bash
#!/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 |