mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
36 lines
1.6 KiB
Bash
Executable File
36 lines
1.6 KiB
Bash
Executable File
###########################################################################
|
|
# before_install.sh
|
|
# ---------------------
|
|
# Date : March 2016
|
|
# Copyright : (C) 2016 by Matthias Kuhn
|
|
# Email : matthias at opengis dot ch
|
|
###########################################################################
|
|
# #
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
###########################################################################
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
export CORES=2
|
|
|
|
##################################################
|
|
#
|
|
# Get precompiled dependencies
|
|
#
|
|
##################################################
|
|
|
|
pushd ${HOME}
|
|
|
|
curl -L https://github.com/opengisch/osgeo4travis/archive/qt5bin.tar.gz | tar -xzC /home/travis --strip-components=1
|
|
curl -L https://cmake.org/files/v3.5/cmake-3.5.0-Linux-x86_64.tar.gz | tar --strip-components=1 -zxC /home/travis/osgeo4travis
|
|
|
|
# Download OTB package for Processing tests
|
|
wget https://www.orfeo-toolbox.org/packages/archives/OTB/OTB-5.6.0-Linux64.run -O /home/travis/OTB-5.6.0-Linux64.run && sh /home/travis/OTB-5.6.0-Linux64.run
|
|
|
|
popd
|
|
|
|
pip install psycopg2 numpy nose2 pyyaml mock future termcolor
|