1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00
profanity/.travis.yml

32 lines
1.1 KiB
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
2014-02-22 22:05:05 -05:00
- sudo apt-get -y install libssl-dev libexpat1-dev libncursesw5-dev libglib2.0-dev libnotify-dev libcurl3-dev libxss-dev libotr2-dev
2014-02-22 23:00:23 -05:00
- sudo dpkg --get-selections | grep ruby
2014-02-22 23:23:52 -05:00
- sudo dpkg --get-selections | grep lua
2014-02-22 23:03:32 -05:00
- sudo apt-get remove ruby1.9.1 ruby1.9.3 libruby1.9.1 ruby
2014-02-22 23:19:24 -05:00
- sudo apt-get -y install autoconf-archive python-dev ruby1.8-dev libruby1.8 liblualib50 liblua50 lua5.1 liblua5.1-0
2014-02-22 23:00:23 -05:00
- sudo dpkg --get-selections | grep ruby
2014-02-22 23:23:52 -05:00
- sudo dpkg --get-selections | grep lua
2014-02-22 22:03:29 -05:00
- ./bootstrap.sh
- git clone git://github.com/strophe/libstrophe.git
- cd libstrophe
- ./bootstrap.sh
- ./configure
- make
- sudo make install
- cd ..
- rm -rf libstrophe
2014-02-22 22:17:25 -05:00
- wget https://open.cryptomilk.org/attachments/download/34/cmocka-0.3.2.tar.xz
- tar -xvf cmocka-0.3.2.tar.xz
- cd cmocka-0.3.2
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..
- make
- sudo make install
- cd ../..
- rm -rf cmocka-0.3.2
2014-02-22 22:03:29 -05:00
- ./bootstrap.sh
2014-02-22 23:11:58 -05:00
script: ./configure --disable-ruby-plugins && make && make check