libretro-super/libretro-fetch.sh

97 lines
2.5 KiB
Bash
Raw Normal View History

2011-11-02 15:27:23 +00:00
#!/bin/sh
# Keep three copies so we don't have to rebuild stuff all the time.
fetch_project_bsnes()
{
echo "=== Fetching $3 ==="
if [ -d "$2" ]; then
cd "$2"
git pull
cd ..
else
git clone $1 "$2"
2011-11-02 15:27:23 +00:00
fi
if [ -d "$2" ]; then
cd "$2"
if [ -d "perf" ]; then
cd perf
git pull ..
cd ..
else
git clone . perf
fi
if [ -d "compat" ]; then
2012-08-30 07:37:10 +00:00
cd compat
2011-11-02 15:27:23 +00:00
git pull ..
cd ..
else
git clone . compat
fi
cd ..
fi
}
2012-11-08 21:55:59 +00:00
fetch_project_mednafen()
{
echo "=== Fetching $3 ==="
if [ -d "$2" ]; then
cd "$2"
git pull
cd ..
else
git clone $1 "$2"
fi
if [ -d "$2" ]; then
cd "$2"
2012-11-08 22:14:01 +00:00
for core in psx pce-fast wswan
2012-11-08 21:55:59 +00:00
do
if [ -d "$core" ]; then
cd $core
git pull ..
cd ..
else
git clone . $core
fi
done
cd ..
fi
}
2011-11-02 15:27:23 +00:00
fetch_project()
{
echo "=== Fetching $3 ==="
if [ -d "$2" ]; then
cd "$2"
git pull
cd ..
else
2012-01-03 14:15:33 +00:00
git clone "$1" "$2"
2011-11-02 15:27:23 +00:00
fi
echo "=== Fetched ==="
}
2012-01-03 14:15:33 +00:00
REPO_BASE="git://github.com"
2011-11-02 15:27:23 +00:00
fetch_project_bsnes "git://gitorious.org/bsnes/bsnes.git --branch libretro" "libretro-bsnes" "libretro/bSNES"
2012-04-16 17:33:18 +00:00
fetch_project "$REPO_BASE/snes9xgit/snes9x.git" "libretro-s9x" "libretro/SNES9x"
2012-06-03 19:36:01 +00:00
fetch_project "$REPO_BASE/libretro/snes9x-next.git" "libretro-s9x-next" "libretro/SNES9x-Next"
2012-08-11 18:06:51 +00:00
fetch_project "$REPO_BASE/libretro/Genesis-Plus-GX.git" "libretro-genplus" "libretro/Genplus GX"
2012-06-03 19:36:01 +00:00
fetch_project "$REPO_BASE/libretro/fba-libretro.git" "libretro-fba" "libretro/FBA"
fetch_project "$REPO_BASE/libretro/vba-next.git" "libretro-vba" "libretro/VBA"
fetch_project "$REPO_BASE/libretro/bnes-libretro.git" "libretro-bnes" "libretro/bNES"
fetch_project "$REPO_BASE/libretro/fceu-next.git" "libretro-fceu" "libretro/FCEU"
fetch_project "$REPO_BASE/libretro/gambatte-libretro.git" "libretro-gambatte" "libretro/Gambatte"
fetch_project "$REPO_BASE/libretro/meteor-libretro.git" "libretro-meteor" "libretro/Meteor"
fetch_project "$REPO_BASE/libretro/nxengine-libretro.git" "libretro-nx" "libretro/NX"
fetch_project "$REPO_BASE/libretro/libretro-prboom.git" "libretro-prboom" "libretro/PRBoom"
2012-11-08 22:55:59 +00:00
fetch_project "$REPO_BASE/libretro/stella-libretro.git" "libretro-stella" "libretro/Stella"
fetch_project "$REPO_BASE/libretro/desmume-libretro.git" "libretro-desmume" "libretro/Desmume"
2012-11-08 21:55:59 +00:00
fetch_project_mednafen "$REPO_BASE/libretro/mednafen-psx-libretro.git" "libretro-mednafen" "libretro/Mednafen"
2011-11-02 15:27:23 +00:00