Commit da7ee949 authored by Andrew Murray's avatar Andrew Murray
Browse files

Added build stamps

parent afbff539
...@@ -343,20 +343,24 @@ function build_pcre { ...@@ -343,20 +343,24 @@ function build_pcre {
} }
function build_swig { function build_swig {
if [ -e swig-stamp ]; then return; fi
if [ -n "$IS_OSX" ]; then if [ -n "$IS_OSX" ]; then
brew install swig > /dev/null brew install swig > /dev/null
else else
build_pcre build_pcre
build_simple swig $SWIG_VERSION https://prdownloads.sourceforge.net/swig build_simple swig $SWIG_VERSION https://prdownloads.sourceforge.net/swig
fi fi
touch swig-stamp
} }
function build_suitesparse { function build_suitesparse {
if [ -e suitesparse-stamp ]; then return; fi
if [ -n "$IS_OSX" ]; then if [ -n "$IS_OSX" ]; then
brew install suite-sparse > /dev/null brew install suite-sparse > /dev/null
else else
yum install -y suitesparse-devel > /dev/null yum install -y suitesparse-devel > /dev/null
fi fi
touch suitesparse-stamp
} }
function build_libtool { function build_libtool {
......
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