mosquitto/travis-install.sh

13 lines
330 B
Bash
Raw Normal View History

2016-06-07 15:56:15 +00:00
#!/bin/bash
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo apt-get update -qq
sudo apt-get install -y debhelper libc-ares-dev libssl-dev libwrap0-dev python-all python3-all uthash-dev uuid-dev libuuid1 xsltproc docbook-xsl
fi
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update
brew install c-ares openssl libwebsockets
fi