mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-21 23:01:00 +00:00
12 lines
157 B
Plaintext
12 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -euf -o pipefail
|
||
|
|
||
|
hg clone https://hg.libsdl.org/SDL SDL
|
||
|
cd SDL
|
||
|
mkdir build
|
||
|
cd build
|
||
|
../configure --prefix=/io
|
||
|
make -j$(nproc)
|
||
|
make install
|