mirror of
https://github.com/Denvi/FlatCAM.git
synced 2026-02-20 01:31:38 +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 |