You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB
YAML

dist: trusty
sudo: false
addons:
apt:
sources:
- sourceline: 'deb https://weechat.org/ubuntu trusty main'
packages:
- weechat-dev
env:
# install dependencies under $HOME because we don't have sudo
- DEPENDENCY_DIR="$HOME/dependencies" \
PKG_CONFIG_PATH="$DEPENDENCY_DIR/lib/pkgconfig:$PKG_CONFIG_PATH"
install:
# install libsodium, required by libtoxcore
- mkdir libsodium && pushd libsodium
&& 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
&& curl -fSsL "https://github.com/TokTok/c-toxcore/archive/v0.2.1.tar.gz"
| tar -xz --strip-components 1
&& cmake -DCMAKE_INSTALL_PREFIX="$DEPENDENCY_DIR" \
-DBUILD_AV_TEST=off \
-DBUILD_NTOX=off
&& make install
&& popd
script:
- mkdir build && cd build
- cmake -DCMAKE_PREFIX_PATH:PATH="$DEPENDENCY_DIR" ..
- make