mirror of
https://github.com/libretro/libretro-super
synced 2024-12-29 09:22:43 +00:00
11 lines
245 B
Bash
11 lines
245 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
RECIPE=recipes/apple/cores-osx-x64-generic
|
||
|
|
||
|
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}
|