1before_install:
2- |
3  if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
4   brew update
5   brew install libogg
6   brew install libvorbis
7  fi
8  if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
9   sudo apt-get -qq update
10   sudo apt-get install -y libogg-dev libvorbis-dev
11  fi
12language: cpp
13script:
14- mkdir build
15- cd build
16- cmake ..
17- make
18compiler:
19- clang
20- gcc
21os:
22- linux
23- osx
24notifications:
25  irc: "irc.freenode.org#oaml"