1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/.travis.yml

26 lines
779 B
YAML
Raw Normal View History

2014-02-23 02:53:18 +00:00
language: c
2014-02-23 03:03:29 +00: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
2014-02-23 03:03:29 +00:00
- git clone git://github.com/strophe/libstrophe.git
- cd libstrophe
2014-09-30 20:06:09 +00:00
- mkdir m4
2014-02-23 03:03:29 +00:00
- ./bootstrap.sh
- ./configure --prefix=/usr
2014-02-23 03:03:29 +00:00
- make
- sudo make install
- cd ..
- rm -rf libstrophe
2014-05-26 00:05:19 +00:00
- wget https://open.cryptomilk.org/attachments/download/42/cmocka-0.4.1.tar.xz
- tar -xvf cmocka-0.4.1.tar.xz
- cd cmocka-0.4.1
2014-02-23 03:17:25 +00:00
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug ..
- make
- sudo make install
- cd ../..
2014-05-26 00:05:19 +00:00
- rm -rf cmocka-0.4.1
2014-02-23 03:03:29 +00:00
- ./bootstrap.sh
2014-02-23 03:08:02 +00:00
script: ./configure && make && make check