encfs/ci/install-cmake.sh
Ben RUBSON f75854cd31 Update cmake (#309)
* Update cmake

* Update cmake, make Travis use it

* Enable all tests in a single command : make check

* Make cmake flawlessly run with Debian jessie cmake 3.0.2

* Make Travis use our own cmake 3.0.2 compiled version

* Typo in preferred version

* Be sure travis will have gettext
2017-05-28 16:20:21 +02:00

8 lines
211 B
Bash
Executable File

set -x
set -e
if [ ! -e ci/cmake/bin/cmake ]; then
#wget http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-x86_64.tar.gz
tar -xzf ci/cmake-3.0.2-Linux-x86_64.tar.gz
mv cmake-3.0.2-Linux-x86_64 ci/cmake
fi