Unverified Commit 22d0711c authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #186 from radarhere/stamp

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