mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-24 00:09:43 +00:00
22 lines
482 B
Bash
Executable File
22 lines
482 B
Bash
Executable File
#!/bin/bash
|
|
|
|
RECIPE=recipes/nintendo/ngc
|
|
|
|
sudo mkdir -p /home/buildbot/tools
|
|
|
|
sudo chmod -R 777 /home/buildbot
|
|
|
|
cd /home/buildbot/tools
|
|
|
|
# wiiu tools work for ngc also
|
|
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}
|