tox-weechat/.travis.yml

39 lines
1.0 KiB
YAML
Raw Normal View History

dist: trusty
sudo: false
2014-09-02 20:23:09 +00:00
addons:
apt:
sources:
- sourceline: 'deb https://weechat.org/ubuntu trusty main'
packages:
- weechat-dev
2014-11-19 03:59:33 +00:00
env:
# install dependencies under $HOME because we don't have sudo
2018-04-30 16:01:07 +00:00
- DEPENDENCY_DIR="$HOME/dependencies"
- PKG_CONFIG_PATH="$DEPENDENCY_DIR/lib/pkgconfig:$PKG_CONFIG_PATH"
2014-11-19 03:59:33 +00:00
2014-09-18 16:06:02 +00:00
install:
# install libsodium, required by libtoxcore
- mkdir libsodium && pushd libsodium
2018-04-12 20:29:32 +00:00
&& curl -fSsL "https://download.libsodium.org/libsodium/releases/libsodium-1.0.16.tar.gz"
| tar -xz --strip-components 1
&& ./configure --prefix="$DEPENDENCY_DIR"
&& make install
&& popd
# install libtoxcore
- mkdir c-toxcore && pushd c-toxcore
2018-04-12 20:29:32 +00:00
&& curl -fSsL "https://github.com/TokTok/c-toxcore/archive/v0.2.1.tar.gz"
| tar -xz --strip-components 1
2018-04-30 16:01:07 +00:00
&& cmake -DCMAKE_INSTALL_PREFIX="$DEPENDENCY_DIR" \
-DBUILD_AV_TEST=off \
-DBUILD_NTOX=off
&& make install
&& popd
2014-09-02 20:55:36 +00:00
script:
- mkdir build && cd build
- cmake -DCMAKE_PREFIX_PATH:PATH="$DEPENDENCY_DIR" ..
- make