mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
- 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`
15 lines
259 B
Bash
Executable File
15 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
pip3 install --user --upgrade pip wheel
|
|
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
|
|
|