Files
wget2/.travis_setup.sh
Tim Rühsen 9397bba4fc Remove == from scripts (syntax-check)
* .travis.sh: == -> =
* .travis_setup.sh: Likewise
* contrib/gen_option_diff.sh: Likewise
2017-04-29 20:28:36 +02:00

20 lines
510 B
Bash
Executable File

#!/bin/bash
if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
brew update
brew install gnutls
brew install nettle
brew outdated autoconf || brew upgrade autoconf
brew outdated automake || brew upgrade automake
brew outdated libtool || brew upgrade libtool
brew install doxygen
brew outdated gettext || brew upgrade gettext
brew install flex
brew install libidn
brew install xz
brew install lbzip2
brew link --force gettext
elif [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
pip install --user cpp-coveralls
fi