Newer
Older
monitord / .travis.yml
@Pascal Gollor Pascal Gollor on 8 Jan 2017 578 bytes replace spaces
sudo: false

language:
	- cpp

os:
	- linux

before_install:
	- sudo apt-get -qq update
	- sudo apt-get install -y autoconf automake libtool pkg-config alsa-base alas-utils g++ make libasound2-dev libmp3lame-dev libtolua++5.1-dev mysql-client libmysql++-dev libmosquitto-dev libmosquittopp-dev
  
  
script:
	- cd $TRAVIS_BUILD_DIR
	- aclocal -Im4
	- ./auogen.sh
	- ./configure --exec-prefix=$PWD/build/ --prefix=$PWD/build/ --enable-plugins --with-mqtt --with-alsa --with-lame -with-mysql --with-lua-includes=/usr/include/lua5.1 --with-lua-suffix="5.1"
	- make
	- make install