forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vagrant: install dependency sfcgal 1.3.5
Signed-off-by: Hiroshi Miura <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/bin/bash | ||
# Build CGAL | ||
wget https://gforge.inria.fr/frs/download.php/file/34400/CGAL-4.5.1.tar.gz | ||
tar xf CGAL-4.5.1.tar.gz | ||
wget https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-4.11.3/CGAL-4.11.3.tar.xz | ||
tar xf CGAL-4.11.3.tar.xz | ||
(cd CGAL-4.11.3 && cmake . && make && sudo make install) | ||
#rm -rf CGAL-4.11.3 CGAL-4.11.3.tar.gz | ||
|
||
(cd CGAL-4.5.1 && cmake . && make && sudo make install) | ||
rm -rf CGAL-4.5.1 CGAL-4.5.1.tar.gz | ||
# Build SFCGAL | ||
wget https://codeload.github.com/Oslandia/SFCGAL/tar.gz/v1.3.0 -O SFCGAL1.3.0.tar.gz | ||
tar xf SFCGAL1.3.0.tar.gz | ||
(cd SFCGAL-1.3.0 && cmake . && make && sudo make install) | ||
wget https://codeload.github.com/Oslandia/SFCGAL/tar.gz/v1.3.5 -O SFCGAL1.3.5.tar.gz | ||
tar xf SFCGAL1.3.5.tar.gz | ||
(cd SFCGAL-1.3.5 && cmake . && make && sudo make install) | ||
sudo ldconfig |