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.
9 lines
167 B
Bash
9 lines
167 B
Bash
8 years ago
|
#!/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
|
||
|
fi
|
||
|
|