Add more info files.

This commit is contained in:
Themaister 2013-10-06 14:58:45 +02:00
parent a3ba463931
commit 7355dcfd65
10 changed files with 35 additions and 22 deletions

5
dist/info/bnes_libretro.info vendored Normal file
View File

@ -0,0 +1,5 @@
display_name = "NES / Famicom (bNES)"
supported_extensions = "nes"
corename = "bNES/higan"
manufacturer = "Nintendo"
systemname = "Nintendo Entertainment System"

3
dist/info/dosbox_libretro.info vendored Normal file
View File

@ -0,0 +1,3 @@
display_name = "DOS (DOSBox)"
supported_extensions = "exe|com|bat|conf"
corename = "DOSBox"

3
dist/info/ffmpeg_libretro.info vendored Normal file
View File

@ -0,0 +1,3 @@
display_name = "FFmpeg"
supported_extensions = "mkv|avi|f4v|f4f|3gp|ogm|flv|mp4|mp3|flac|ogg|m4a"
corename = "FFmpeg"

6
dist/info/handy_libretro.info vendored Normal file
View File

@ -0,0 +1,6 @@
display_name = "Lynx (Handy)"
supported_extensions = "lnx"
corename = "Handy"
manufacturer = "Atari"
systemname = "Atari Lynx"

5
dist/info/mednafen_snes_libretro.info vendored Normal file
View File

@ -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"

5
dist/info/meteor_libretro.info vendored Normal file
View File

@ -0,0 +1,5 @@
display_name = "Game Boy Advance (Meteor)"
supported_extensions = "gba"
corename = "Meteor"
manufacturer = "Nintendo"
systemname = "Game Boy Advance"

5
dist/info/mupen64plus_libretro.info vendored Normal file
View File

@ -0,0 +1,5 @@
display_name = "Nintendo 64 (Mupen64plus)"
supported_extensions = "n64|v64|z64"
corename = "mupen64plus"
manufacturer = "Nintendo"
systemname = "Nintendo 64"

3
dist/info/scummvm_libretro.info vendored Normal file
View File

@ -0,0 +1,3 @@
display_name = "ScummVM"
supported_extensions = ""
corename = "ScummVM"

View File

@ -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