mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-28 05:49:33 +00:00
Merge pull request #82 from kiwix/fix_travis_build
Fix installation of meson and pillow (pip3) in travis.
This commit is contained in:
@ -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:
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user