diff --git a/dist/info/bnes_libretro.info b/dist/info/bnes_libretro.info new file mode 100644 index 00000000..0773af98 --- /dev/null +++ b/dist/info/bnes_libretro.info @@ -0,0 +1,5 @@ +display_name = "NES / Famicom (bNES)" +supported_extensions = "nes" +corename = "bNES/higan" +manufacturer = "Nintendo" +systemname = "Nintendo Entertainment System" diff --git a/dist/info/dosbox_libretro.info b/dist/info/dosbox_libretro.info new file mode 100644 index 00000000..54cd372b --- /dev/null +++ b/dist/info/dosbox_libretro.info @@ -0,0 +1,3 @@ +display_name = "DOS (DOSBox)" +supported_extensions = "exe|com|bat|conf" +corename = "DOSBox" diff --git a/dist/info/ffmpeg_libretro.info b/dist/info/ffmpeg_libretro.info new file mode 100644 index 00000000..60c45777 --- /dev/null +++ b/dist/info/ffmpeg_libretro.info @@ -0,0 +1,3 @@ +display_name = "FFmpeg" +supported_extensions = "mkv|avi|f4v|f4f|3gp|ogm|flv|mp4|mp3|flac|ogg|m4a" +corename = "FFmpeg" diff --git a/dist/info/handy_libretro.info b/dist/info/handy_libretro.info new file mode 100644 index 00000000..28623f24 --- /dev/null +++ b/dist/info/handy_libretro.info @@ -0,0 +1,6 @@ +display_name = "Lynx (Handy)" +supported_extensions = "lnx" +corename = "Handy" +manufacturer = "Atari" +systemname = "Atari Lynx" + diff --git a/dist/info/mame2013_libretro.info b/dist/info/mame_libretro.info similarity index 100% rename from dist/info/mame2013_libretro.info rename to dist/info/mame_libretro.info diff --git a/dist/info/mednafen_snes_libretro.info b/dist/info/mednafen_snes_libretro.info new file mode 100644 index 00000000..51945593 --- /dev/null +++ b/dist/info/mednafen_snes_libretro.info @@ -0,0 +1,5 @@ +display_name = "SNES / Super Famicom (Mednafen SNES)" +supported_extensions = "sfc|smc" +corename = "Mednafen SNES" +manufacturer = "Nintendo" +systemname = "Super Nintendo Entertainment System" diff --git a/dist/info/meteor_libretro.info b/dist/info/meteor_libretro.info new file mode 100644 index 00000000..70d96bb4 --- /dev/null +++ b/dist/info/meteor_libretro.info @@ -0,0 +1,5 @@ +display_name = "Game Boy Advance (Meteor)" +supported_extensions = "gba" +corename = "Meteor" +manufacturer = "Nintendo" +systemname = "Game Boy Advance" diff --git a/dist/info/mupen64plus_libretro.info b/dist/info/mupen64plus_libretro.info new file mode 100644 index 00000000..6e171a7f --- /dev/null +++ b/dist/info/mupen64plus_libretro.info @@ -0,0 +1,5 @@ +display_name = "Nintendo 64 (Mupen64plus)" +supported_extensions = "n64|v64|z64" +corename = "mupen64plus" +manufacturer = "Nintendo" +systemname = "Nintendo 64" diff --git a/dist/info/scummvm_libretro.info b/dist/info/scummvm_libretro.info new file mode 100644 index 00000000..5a530039 --- /dev/null +++ b/dist/info/scummvm_libretro.info @@ -0,0 +1,3 @@ +display_name = "ScummVM" +supported_extensions = "" +corename = "ScummVM" diff --git a/libretro-install-win32.sh b/libretro-install-win32.sh deleted file mode 100755 index a4ac69a8..00000000 --- a/libretro-install-win32.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -ARCH_EXT="$1" - -SCRIPT=$(readlink -f "$0") -BASE_DIR=$(dirname "$SCRIPT") -RARCH_DIR="$BASE_DIR/dist" -RARCH_DIST_DIR="$RARCH_DIR/win" - -DAY=$(date +"%Y%m%d") - -cd "$RARCH_DIST_DIR" -for file in *.dll -do - REGEX_MV="s|^\(.*\)\.dll$|\1_${ARCH_EXT}_${DAY}.dll|" - REGEX="s|^\(.*\)\.dll$|\1_${ARCH_EXT}_${DAY}.zip|" - FILENAME="`echo $file | sed -e $REGEX_MV`" - mv -v "$file" "$FILENAME" - zip "`echo $file | sed -e $REGEX`" "$FILENAME" - rm -f "$FILENAME" -done -