mirror of
https://github.com/libretro/libretro-super
synced 2024-12-28 15:19:36 +00:00
21 lines
452 B
Bash
Executable File
21 lines
452 B
Bash
Executable File
#!/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}
|