From 9422a5be7eb25cf2ae752d2c3374fe373be1447d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 10 Feb 2015 18:59:47 +0100 Subject: [PATCH] Add libretro SDK --- libretro-fetch.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libretro-fetch.sh b/libretro-fetch.sh index 3e10e2df..49bd2089 100755 --- a/libretro-fetch.sh +++ b/libretro-fetch.sh @@ -385,6 +385,10 @@ fetch_libretro_emux() { fetch_git "$REPO_BASE/libretro/emux.git" "libretro-emux" "libretro/Emux" } +fetch_libretro_sdk() { + fetch_git "$REPO_BASE/libretro/libretro-sdk.git" "libretro-sdk" "libretro/SDK" +} + if [ -n "${1}" ]; then while [ -n "${1}" ]; do "${1}" @@ -454,5 +458,6 @@ else fetch_libretro_tempgba fetch_libretro_gpsp fetch_libretro_emux + fetch_libretro_sdk fi