You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
if [[ "$(uname -s)" == 'Linux' ]]; then
|
|
sudo apt-get install cmake zlib1g-dev libssh-dev libcurl4-openssl-dev gettext libexpat1-dev
|
|
else
|
|
brew update
|
|
brew install expat gettext libssh
|
|
# By default it already has cmake 3.6.2
|
|
fi
|
|
|