1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00
profanity/.travis.yml

27 lines
939 B
YAML
Raw Normal View History

2014-02-22 21:53:18 -05:00
language: c
2014-02-22 22:03:29 -05:00
install:
- sudo apt-get update
- sudo apt-get -y install libssl-dev libexpat1-dev libncursesw5-dev libglib2.0-dev libnotify-dev libcurl3-dev libxss-dev libotr2-dev autoconf-archive
- sudo apt-get -y install libtool python-dev lua5.2 liblua5.2-dev ruby-dev
2014-02-22 22:03:29 -05:00
- git clone git://github.com/strophe/libstrophe.git
- cd libstrophe
2014-09-30 16:06:09 -04:00
- mkdir m4
2014-02-22 22:03:29 -05:00
- ./bootstrap.sh
- ./configure --prefix=/usr
2014-02-22 22:03:29 -05:00
- make
- sudo make install
- cd ..
- rm -rf libstrophe
- wget https://cmocka.org/files/1.0/cmocka-1.0.0.tar.xz
- tar -xvf cmocka-1.0.0.tar.xz
- cd cmocka-1.0.0
2014-02-22 22:17:25 -05:00
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..
- make
- sudo make install
- cd ../..
- rm -rf cmocka-1.0.0
2014-02-22 22:03:29 -05:00
- ./bootstrap.sh
2014-06-03 18:50:47 -04:00
script: ./configure --enable-ruby-plugins --enable-python-plugins --enable-c-plugins --disable-lua-plugins && make && make check