2014-05-19 03:28:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2014-12-16 00:00:37 +00:00
|
|
|
set -x
|
2014-05-19 03:28:50 +00:00
|
|
|
|
|
|
|
#if OS is linux or is not set
|
2015-03-06 23:54:09 +00:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
|
2016-06-17 13:10:34 +00:00
|
|
|
export CC=gcc-6
|
|
|
|
export CXX=g++-6
|
2015-07-10 22:21:39 +00:00
|
|
|
mkdir -p $HOME/.local
|
2015-07-10 23:04:28 +00:00
|
|
|
|
2016-09-08 02:31:57 +00:00
|
|
|
if [ ! -e $HOME/.local/bin/cmake ]; then
|
|
|
|
echo "CMake not found in the cache, get and extract it..."
|
|
|
|
curl -L http://www.cmake.org/files/v3.2/cmake-3.2.0-Linux-i386.tar.gz \
|
|
|
|
| tar -xz -C $HOME/.local --strip-components=1
|
|
|
|
else
|
|
|
|
echo "Using cached CMake"
|
|
|
|
fi
|
2015-07-10 23:04:28 +00:00
|
|
|
|
2016-09-08 02:31:57 +00:00
|
|
|
if [ ! -e $HOME/.local/lib/libSDL2.la ]; then
|
|
|
|
echo "SDL2 not found in cache, get and build it..."
|
2016-03-01 17:24:18 +00:00
|
|
|
wget http://libsdl.org/release/SDL2-2.0.4.tar.gz -O - | tar xz
|
|
|
|
cd SDL2-2.0.4
|
|
|
|
./configure --prefix=$HOME/.local
|
2015-07-10 22:21:39 +00:00
|
|
|
make -j4 && make install
|
2016-09-08 02:31:57 +00:00
|
|
|
else
|
|
|
|
echo "Using cached SDL2"
|
|
|
|
fi
|
|
|
|
|
2015-03-06 23:54:09 +00:00
|
|
|
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2016-09-21 04:25:15 +00:00
|
|
|
brew update
|
2016-11-11 21:45:52 +00:00
|
|
|
brew install qt5 sdl2 dylibbundler
|
2014-05-19 03:28:50 +00:00
|
|
|
fi
|