Update docker.sh #18

Merged
qurious-pixel merged 1 commit from patch-3 into main 2021-05-10 11:05:40 +02:00
Showing only changes of commit 8780219cf2 - Show all commits

View file

@ -7,6 +7,15 @@ title="yuzu Early Access $ver"
ln -s /home/yuzu/.conan /root
#SDL-2.0.15-14858.tar.gz
mkdir SDL2 && cd SDL2
curl -sLO http://libsdl.org/tmp/SDL-2.0.15-14858.tar.gz
tar -xzf SDL-2.0.15-14858.tar.gz
cd SDL-2.0.15-14858
./configure --prefix=/usr
make && make install
cd ../../
yuzupatch=( $(ls -d patches/* ) )
for i in "${yuzupatch[@]}"; do patch -p1 < "$i"; done