Merge pull request #82 from kiwix/fix_travis_build

Fix installation of meson and pillow (pip3) in travis.
This commit is contained in:
Matthieu Gautier
2017-09-11 15:15:37 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -377,7 +377,7 @@ class KiwixAndroid(Dependency):
def _configure(self, context):
if not os.path.exists(self.build_path):
shutil.copytree(self.source_path, self.build_path)
shutil.copytree(self.source_path, self.build_path, symlinks=True)
try:
shutil.rmtree(pj(self.build_path, 'kiwixlib', 'src', 'main'))
except FileNotFoundError:

View File

@ -6,8 +6,8 @@ orig_dir=$(pwd)
sudo apt-get update -qq
sudo apt-get install -qq python3-pip zlib1g-dev libjpeg-dev
pip3 install meson
pip3 install pillow
pip3 install --user meson
pip3 install --user pillow
# ninja
git clone git://github.com/ninja-build/ninja.git