Adapte travis to new file architectures.

- kiwix-build is installable, so let's install it in travisCI
- Declare the dependency to meson in the setup.py
- As kiwixbuild is installed, we don't need to change the `sys.path`
This commit is contained in:
Matthieu Gautier
2018-04-04 15:20:40 +02:00
parent 97666b0fc9
commit 6ebd96c059
3 changed files with 8 additions and 8 deletions

View File

@ -2,15 +2,13 @@
set -e
orig_dir=$(pwd)
pip3 install --user --upgrade pip wheel
pip3 install --user pillow meson==0.43.0
pip3 install --user pillow
pip3 install --user .
# ninja
wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
unzip ninja-linux.zip ninja
cp ninja $HOME/bin
cd $orig_dir