-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92e4b03
commit fe1877a
Showing
3 changed files
with
133 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#!/bin/bash | ||
PREFIX=/usr/local | ||
POPPLER="poppler-0.23.4" | ||
PROJ="proj-6.3.2" | ||
GDAL="gdal-3.2.1" | ||
|
||
#Dependencies | ||
sudo -E apt-get install -y pkg-config libfontconfig1-dev libcurl4-gnutls-dev libnetcdf-dev \ | ||
libboost-program-options-dev libboost-date-time-dev libgeos-dev \ | ||
libboost-test-dev libsqlite3-dev sqlite3 | ||
|
||
|
||
### Install OpenMPI | ||
OPENMPI_VERSION=4.0.4 | ||
wget https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-${OPENMPI_VERSION}.tar.gz | ||
tar -xzf openmpi-${OPENMPI_VERSION}.tar.gz | ||
rm -f openmpi-${OPENMPI_VERSION}.tar.gz | ||
cd openmpi-${OPENMPI_VERSION} | ||
./configure --prefix=/opt/openmpi-${OPENMPI_VERSION} | ||
make -j 12 all install | ||
cd .. | ||
rm -rf openmpi-${OPENMPI_VERSION} | ||
|
||
### Update environment variables for OpenMPI | ||
export MPI_DIR=/opt/openmpi-${OPENMPI_VERSION} | ||
export MPI_BIN=$MPI_DIR/bin | ||
export MPI_LIB=$MPI_DIR/lib | ||
export MPI_INC=$MPI_DIR/include | ||
export PATH=$MPI_BIN:$PATH | ||
export LD_LIBRARY_PATH=$MPI_LIB:$LD_LIBRARY_PATH | ||
|
||
#Get and build poppler for PDF support in GDAL | ||
wget https://poppler.freedesktop.org/$POPPLER.tar.xz | ||
tar -xvf $POPPLER.tar.xz | ||
cd $POPPLER/ | ||
./configure --prefix=$PREFIX --enable-xpdf-headers | ||
make -j 12 | ||
sudo make install | ||
cd .. | ||
|
||
#Get and build proj | ||
wget https://download.osgeo.org/proj/$PROJ.tar.gz | ||
tar xvfz $PROJ.tar.gz | ||
cd $PROJ | ||
./configure --prefix=$PREFIX | ||
make clean | ||
make -j 12 | ||
sudo make install | ||
cd .. | ||
|
||
#Get and build GDAL with poppler support | ||
wget https://download.osgeo.org/gdal/${GDAL:5}/$GDAL.tar.gz | ||
tar -xvf $GDAL.tar.gz | ||
cd $GDAL/ | ||
./configure --prefix=$PREFIX --with-poppler=$PREFIX | ||
make -j 8 | ||
sudo make install | ||
cd .. | ||
|
||
#Add qt4 libs from ppa | ||
#See here for more info: | ||
#https://ubuntuhandbook.org/index.php/2020/07/install-qt4-ubuntu-20-04/ | ||
sudo add-apt-repository ppa:rock-core/qt4 | ||
sudo apt-get update | ||
sudo -E apt-get install -y libqt4-dev libqtwebkit-dev | ||
|
||
#Use OpenFOAM 8 | ||
#add the dl.openfoam.org repo and install OpenFOAM 8 | ||
sudo sh -c "wget -O - https://dl.openfoam.org/gpg.key | apt-key add -" | ||
sudo add-apt-repository http://dl.openfoam.org/ubuntu | ||
sudo apt-get update | ||
sudo -E apt-get install -y openfoam8 | ||
echo "source /opt/openfoam8/etc/bashrc" >> /etc/bash.bashrc | ||
|
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