mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-31 18:37:30 +01:00
15 lines
323 B
Bash
Executable File
15 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "$TRAVIS_OS_NAME" = "osx"; then
|
|
# Mac OS X.
|
|
brew update
|
|
brew install qt5
|
|
brew link --force qt5
|
|
brew install curl
|
|
brew link --force curl
|
|
else
|
|
# Linux.
|
|
sudo add-apt-repository ppa:beineri/opt-qt57-trusty -y
|
|
sudo apt-get update
|
|
sudo apt-get -y install qt57tools qt57base qt57webengine
|
|
fi |