Revision 745bee4ed1580dc96789a7b7e7607bb38c0e6bc8 authored by Konrad Werys on 16 August 2019, 10:11:41 UTC, committed by Konrad Werys on 16 August 2019, 10:11:41 UTC
1 parent c96fbf0
Raw File
downloadLmfit_linux_osx.sh
#!/bin/bash

mysystem=$(uname)
export mysystem

if [ "${mysystem}" == "Darwin" ]
then
  export mysystem="osx";
fi

if [ "${mysystem}" == "Linux" ]
then
  export mysystem="linux";
fi

echo ${mysystem}
cd ../thirdParty

mkdir lmfit
cd lmfit
curl -L -O https://github.com/MRKonrad/build-lmfit/releases/download/lmfit_master/lmfit_master_${mysystem}_g++_CXX98.zip
unzip -a -q lmfit_master_${mysystem}_g++_CXX98.zip
rm lmfit_master_${mysystem}_g++_CXX98.zip

echo "lmfit binaries downloaded"
back to top