mirror of
https://github.com/libretro/libretro-super
synced 2024-12-29 09:22:43 +00:00
21 lines
452 B
Bash
21 lines
452 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
RECIPE=recipes/nintendo/wiiu
|
||
|
|
||
|
sudo mkdir -p /home/buildbot/tools
|
||
|
|
||
|
sudo chmod -R 777 /home/buildbot
|
||
|
|
||
|
cd /home/buildbot/tools
|
||
|
|
||
|
wget -O wiiu.tar.xz 'https://github.com/libretro/libretro-toolchains/blob/master/wiiu.tar.xz?raw=true'
|
||
|
|
||
|
tar Jkxf wiiu.tar.xz
|
||
|
|
||
|
cd ~/libretro-super
|
||
|
|
||
|
# only build the one core specified in $CORE
|
||
|
egrep "^$CORE " ${RECIPE} | head -1 >${RECIPE}.new && mv ${RECIPE}.new ${RECIPE}
|
||
|
|
||
|
./libretro-buildbot-recipe.sh ${RECIPE}
|