mirror of
https://github.com/glest/glest-source.git
synced 2025-02-23 19:22:40 +01:00
13 lines
185 B
Bash
13 lines
185 B
Bash
|
#!/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
|
||
|
)
|