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