MegaGlest/.travis-before_install.sh

13 lines
185 B
Bash
Raw Normal View History

2015-09-29 10:53:30 +02:00
#!/bin/sh
set -ex
wget https://www.libsdl.org/release/SDL2-2.0.3.tar.gz
tar xf SDL2-2.0.3.tar.gz
(
cd SDL2-2.0.3
./configure --enable-static --disable-shared
make
sudo make install
)