Commit 97feeb06 authored by xoviat's avatar xoviat Committed by GitHub
Browse files

libraries: add SWIG and sparsesuite

parent 4857b03f
...@@ -316,3 +316,19 @@ function build_netcdf { ...@@ -316,3 +316,19 @@ function build_netcdf {
&& make install) && make install)
touch netcdf-stamp touch netcdf-stamp
} }
function build_swig {
if [ -n "$IS_OSX" ]; then
brew install swig > /dev/null
else
yum install -y swig > /dev/null
fi
}
function build_sparsesuite {
if [ -n "$IS_OSX" ]; then
brew install homebrew/science/suite-sparse > /dev/null
else
yum install -y swig > /dev/null
fi
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment