From 7b0c8b6dc87409e31cb727c02189ac8749276e16 Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Fri, 13 Feb 2015 17:57:04 -0800 Subject: [PATCH] Add libretro-sdk for parity w/ libretro-fetch.sh --- iKarith-libretro-fetch.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/iKarith-libretro-fetch.sh b/iKarith-libretro-fetch.sh index 0fbf273a..20a49e49 100755 --- a/iKarith-libretro-fetch.sh +++ b/iKarith-libretro-fetch.sh @@ -288,6 +288,11 @@ fetch_libretro_emux() { fetch_git "https://github.com/libretro/emux.git" "libretro-emux" } +fetch_libretro_sdk() { + fetch_git "https://github.com/libretro/libretro-sdk.git" "libretro-sdk" +} + + if [ -n "${1}" ]; then while [ -n "${1}" ]; do "${1}" @@ -357,5 +362,6 @@ else fetch_libretro_tempgba fetch_libretro_gpsp fetch_libretro_emux + fetch_libretro_sdk fi