aboutsummaryrefslogtreecommitdiff
path: root/tests/travis/install-build-depends
blob: 36d6904d954ad67bcbb6c35ccbd87060f17aad73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
set -e

if [ "$(uname -s)" = "Darwin" ]; then
    brew update

    case "$CONFIG" in
    full*)
        brew install doxygen gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly
        ;;
    esac
else
    sudo apt-get update -qq
    sudo apt-get install -qq clang cmake

    case "$CONFIG" in
    full*)
        sudo apt-get install -qq  doxygen graphviz libgstreamer1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly
        ;;
    esac
fi