From 6fe420873ec1c0b94cebc3a74adeb399b216171a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 5 Oct 2013 03:57:10 +0000 Subject: [PATCH] Moved info files over to libretro-super (directory dist/info) --- dist/info/bsnes_performance_libretro.info | 5 ++++ dist/info/desmume_libretro.info | 5 ++++ dist/info/dinothawr_libretro.info | 3 +++ dist/info/example.info | 16 +++++++++++++ dist/info/fb_alpha_libretro.info | 5 ++++ dist/info/fceumm_libretro.info | 6 +++++ dist/info/gambatte_libretro.info | 5 ++++ dist/info/genesis_plus_gx_libretro.info | 28 +++++++++++++++++++++++ dist/info/instancingviewer_libretro.info | 5 ++++ dist/info/mame078_libretro.info | 5 ++++ dist/info/mame2013_libretro.info | 5 ++++ dist/info/mednafen_gba_libretro.info | 5 ++++ dist/info/mednafen_ngp_libretro.info | 6 +++++ dist/info/mednafen_pce_fast_libretro.info | 10 ++++++++ dist/info/mednafen_psx_libretro.info | 6 +++++ dist/info/mednafen_vb_libretro.info | 6 +++++ dist/info/mednafen_wswan_libretro.info | 6 +++++ dist/info/modelviewer_libretro.info | 5 ++++ dist/info/nestopia_libretro.info | 6 +++++ dist/info/nxengine_libretro.info | 3 +++ dist/info/pcsx_rearmed_libretro.info | 16 +++++++++++++ dist/info/picodrive_libretro.info | 5 ++++ dist/info/prboom_libretro.info | 3 +++ dist/info/quicknes_libretro.info | 6 +++++ dist/info/scenewalker_libretro.info | 5 ++++ dist/info/snes9x_libretro.info | 5 ++++ dist/info/snes9x_next_libretro.info | 5 ++++ dist/info/stella_libretro.info | 6 +++++ dist/info/tyrquake_libretro.info | 3 +++ dist/info/vba_next_libretro.info | 5 ++++ dist/info/vbam_libretro.info | 5 ++++ libretro-build.sh | 2 +- 32 files changed, 206 insertions(+), 1 deletion(-) create mode 100644 dist/info/bsnes_performance_libretro.info create mode 100644 dist/info/desmume_libretro.info create mode 100644 dist/info/dinothawr_libretro.info create mode 100644 dist/info/example.info create mode 100644 dist/info/fb_alpha_libretro.info create mode 100644 dist/info/fceumm_libretro.info create mode 100644 dist/info/gambatte_libretro.info create mode 100644 dist/info/genesis_plus_gx_libretro.info create mode 100644 dist/info/instancingviewer_libretro.info create mode 100644 dist/info/mame078_libretro.info create mode 100644 dist/info/mame2013_libretro.info create mode 100644 dist/info/mednafen_gba_libretro.info create mode 100644 dist/info/mednafen_ngp_libretro.info create mode 100644 dist/info/mednafen_pce_fast_libretro.info create mode 100644 dist/info/mednafen_psx_libretro.info create mode 100644 dist/info/mednafen_vb_libretro.info create mode 100644 dist/info/mednafen_wswan_libretro.info create mode 100644 dist/info/modelviewer_libretro.info create mode 100644 dist/info/nestopia_libretro.info create mode 100644 dist/info/nxengine_libretro.info create mode 100644 dist/info/pcsx_rearmed_libretro.info create mode 100644 dist/info/picodrive_libretro.info create mode 100644 dist/info/prboom_libretro.info create mode 100644 dist/info/quicknes_libretro.info create mode 100644 dist/info/scenewalker_libretro.info create mode 100644 dist/info/snes9x_libretro.info create mode 100644 dist/info/snes9x_next_libretro.info create mode 100644 dist/info/stella_libretro.info create mode 100644 dist/info/tyrquake_libretro.info create mode 100644 dist/info/vba_next_libretro.info create mode 100644 dist/info/vbam_libretro.info diff --git a/dist/info/bsnes_performance_libretro.info b/dist/info/bsnes_performance_libretro.info new file mode 100644 index 00000000..2db7e923 --- /dev/null +++ b/dist/info/bsnes_performance_libretro.info @@ -0,0 +1,5 @@ +display_name = "SNES / Super Famicom (SNES9x Next)" +supported_extensions = "smc|sfc" +corename = "bsnes/higan Performance" +manufacturer = "Nintendo" +systemname = "Super Nintendo Entertainment System" diff --git a/dist/info/desmume_libretro.info b/dist/info/desmume_libretro.info new file mode 100644 index 00000000..7f7dcf13 --- /dev/null +++ b/dist/info/desmume_libretro.info @@ -0,0 +1,5 @@ +display_name = "Nintendo DS (DeSmuME)" +supported_extensions = "nds" +corename = "DeSmuME" +manufacturer = "Nintendo" +systemname = "Nintendo DS" diff --git a/dist/info/dinothawr_libretro.info b/dist/info/dinothawr_libretro.info new file mode 100644 index 00000000..20ca9112 --- /dev/null +++ b/dist/info/dinothawr_libretro.info @@ -0,0 +1,3 @@ +display_name = "Dinothawr" +supported_extensions = "game" +corename = "Dinothawr" diff --git a/dist/info/example.info b/dist/info/example.info new file mode 100644 index 00000000..a6b051a9 --- /dev/null +++ b/dist/info/example.info @@ -0,0 +1,16 @@ +## All data is optional, but helps improve user experience. + +# Name displayed when the user is selecting an core. +# display_name = "NES / Famicom" + +# List of supported extensions. +# supported_extensions = "nes|fds" + +# Name the core. +# corename = "Nestopia" + +# The developer. +# manufacturer = "Nintendo" + +# Name of the system that the emulator targets. +# systemname = "Nintendo Entertainment System" diff --git a/dist/info/fb_alpha_libretro.info b/dist/info/fb_alpha_libretro.info new file mode 100644 index 00000000..b1b2b1f7 --- /dev/null +++ b/dist/info/fb_alpha_libretro.info @@ -0,0 +1,5 @@ +display_name = "Arcade (FBA)" +supported_extensions = "zip" +corename = "Final Burn Alpha" +manufacturer = "Various" +systemname = "Arcade (various)" diff --git a/dist/info/fceumm_libretro.info b/dist/info/fceumm_libretro.info new file mode 100644 index 00000000..46f30b24 --- /dev/null +++ b/dist/info/fceumm_libretro.info @@ -0,0 +1,6 @@ +display_name = "NES / Famicom (FCEUmm)" +supported_extensions = "nes|unif" +corename = "FCEUmm" +manufacturer = "Nintendo" +systemname = "Nintendo Entertainment System" + diff --git a/dist/info/gambatte_libretro.info b/dist/info/gambatte_libretro.info new file mode 100644 index 00000000..810695f3 --- /dev/null +++ b/dist/info/gambatte_libretro.info @@ -0,0 +1,5 @@ +display_name = "Game Boy / Game Boy Color (Gambatte)" +supported_extensions = "gb|gbc|dmg" +corename = "gambatte" +manufacturer = "Nintendo" +systemname = "Game Boy Color" diff --git a/dist/info/genesis_plus_gx_libretro.info b/dist/info/genesis_plus_gx_libretro.info new file mode 100644 index 00000000..4f71a604 --- /dev/null +++ b/dist/info/genesis_plus_gx_libretro.info @@ -0,0 +1,28 @@ +display_name = "Sega MS/GG/MD/CD (Genesis Plus GX)" +supported_extensions = "md|smd|gen|sms|gg|sg|bin|cue|ios" +corename = "Genesis Plus GX" +manufacturer = "Sega" +systemname = "Sega (Various)" + +firmware_count = 7 + +firmware1_desc = "bios_CD_E.bin (MegaCD EU BIOS)" +firmware1_path = "%sysdir%/bios_CD_E.bin" + +firmware2_desc = "bios_CD_U.bin (SegaCD US BIOS)" +firmware2_path = "%sysdir%/bios_CD_U.bin" + +firmware3_desc = "bios_CD_J.bin (MegaCD JP BIOS)" +firmware3_path = "%sysdir%/bios_CD_J.bin" + +firmware4_desc = "bios_E.sms (MasterSystem EU BIOS)" +firmware4_path = "%sysdir%/bios_E.sms" + +firmware5_desc = "bios_U.sms (MasterSystem US BIOS)" +firmware5_path = "%sysdir%/bios_U.sms" + +firmware6_desc = "bios_J.sms (MasterSystem JP BIOS)" +firmware6_path = "%sysdir%/bios_J.sms" + +firmware7_desc = "bios.gg (GameGear BIOS)" +firmware7_path = "%sysdir%/bios.gg" diff --git a/dist/info/instancingviewer_libretro.info b/dist/info/instancingviewer_libretro.info new file mode 100644 index 00000000..4650def4 --- /dev/null +++ b/dist/info/instancingviewer_libretro.info @@ -0,0 +1,5 @@ +display_name = "PNG Images (InstancingViewer)" +recommended_extensions = "png" +corename = "InstancingViewer" +manufacturer = "Various" +systemname = "Instantiation of objects" diff --git a/dist/info/mame078_libretro.info b/dist/info/mame078_libretro.info new file mode 100644 index 00000000..335886a1 --- /dev/null +++ b/dist/info/mame078_libretro.info @@ -0,0 +1,5 @@ +display_name = "Arcade (MAME 2003)" +supported_extensions = "zip" +corename = "MAME 2003 (0.78)" +manufacturer = "Various" +systemname = "Arcade (various)" diff --git a/dist/info/mame2013_libretro.info b/dist/info/mame2013_libretro.info new file mode 100644 index 00000000..75aa295a --- /dev/null +++ b/dist/info/mame2013_libretro.info @@ -0,0 +1,5 @@ +display_name = "Arcade (MAME 2013)" +supported_extensions = "zip|7z|chd" +corename = "MAME 2013 (0.150)" +manufacturer = "Various" +systemname = "Arcade (various)" diff --git a/dist/info/mednafen_gba_libretro.info b/dist/info/mednafen_gba_libretro.info new file mode 100644 index 00000000..4570d8fc --- /dev/null +++ b/dist/info/mednafen_gba_libretro.info @@ -0,0 +1,5 @@ +display_name = "Game Boy Advance (Mednafen VBA)" +supported_extensions = "gba" +corename = "Mednafen VBA" +manufacturer = "Nintendo" +systemname = "Game Boy Advance" diff --git a/dist/info/mednafen_ngp_libretro.info b/dist/info/mednafen_ngp_libretro.info new file mode 100644 index 00000000..40e35e45 --- /dev/null +++ b/dist/info/mednafen_ngp_libretro.info @@ -0,0 +1,6 @@ +display_name = "Neo Geo Pocket/Color (Mednafen Neopop)" +supported_extensions = "ngp|ngc" +corename = "Mednafen Neopop" +manufacturer = "SNK" +systemname = "Neo Geo Pocket (Color)" + diff --git a/dist/info/mednafen_pce_fast_libretro.info b/dist/info/mednafen_pce_fast_libretro.info new file mode 100644 index 00000000..9fb9b8f7 --- /dev/null +++ b/dist/info/mednafen_pce_fast_libretro.info @@ -0,0 +1,10 @@ +display_name = "PC Engine/TurboGrafx-16 (Mednafen PCE Fast)" +supported_extensions = "pce|sgx|cue" +corename = "Mednafen PCE Fast" +manufacturer = "NEC" +systemname = "PC Engine/TurboGrafx-16" + +firmware_count = 1 + +firmware1_desc = "syscard3.pce" +firmware1_path = "%sysdir%/syscard3.pce" diff --git a/dist/info/mednafen_psx_libretro.info b/dist/info/mednafen_psx_libretro.info new file mode 100644 index 00000000..0cb1956f --- /dev/null +++ b/dist/info/mednafen_psx_libretro.info @@ -0,0 +1,6 @@ +display_name = "PlayStation1 (Mednafen PSX)" +supported_extensions = "cue|toc" +corename = "Mednafen PSX" +manufacturer = "Sony" +systemname = "PlayStation" + diff --git a/dist/info/mednafen_vb_libretro.info b/dist/info/mednafen_vb_libretro.info new file mode 100644 index 00000000..bb7d8bd2 --- /dev/null +++ b/dist/info/mednafen_vb_libretro.info @@ -0,0 +1,6 @@ +display_name = "Virtual Boy (Mednafen VB)" +supported_extensions = "vb|vboy|bin" +corename = "Mednafen VB" +manufacturer = "Nintendo" +systemname = "Virtual Boy" + diff --git a/dist/info/mednafen_wswan_libretro.info b/dist/info/mednafen_wswan_libretro.info new file mode 100644 index 00000000..320e9cd9 --- /dev/null +++ b/dist/info/mednafen_wswan_libretro.info @@ -0,0 +1,6 @@ +display_name = "WonderSwan/Color (Mednafen Cygne)" +supported_extensions = "ws|wsc" +corename = "Mednafen WonderSwan" +manufacturer = "Bandai" +systemname = "WonderSwan/Color" + diff --git a/dist/info/modelviewer_libretro.info b/dist/info/modelviewer_libretro.info new file mode 100644 index 00000000..87fdf0fd --- /dev/null +++ b/dist/info/modelviewer_libretro.info @@ -0,0 +1,5 @@ +display_name = "3D Models (Modelviewer)" +recommended_extensions = "obj" +corename = "Modelviewer" +manufacturer = "Various" +systemname = "3D Models" diff --git a/dist/info/nestopia_libretro.info b/dist/info/nestopia_libretro.info new file mode 100644 index 00000000..c9e0931e --- /dev/null +++ b/dist/info/nestopia_libretro.info @@ -0,0 +1,6 @@ +display_name = "NES / Famicom (NEStopia)" +supported_extensions = "nes|fds" +corename = "Nestopia" +manufacturer = "Nintendo" +systemname = "Nintendo Entertainment System" + diff --git a/dist/info/nxengine_libretro.info b/dist/info/nxengine_libretro.info new file mode 100644 index 00000000..8ec2d1b4 --- /dev/null +++ b/dist/info/nxengine_libretro.info @@ -0,0 +1,3 @@ +display_name = "Cave Story (NXEngine)" +supported_extensions = "exe" +corename = "NXEngine" diff --git a/dist/info/pcsx_rearmed_libretro.info b/dist/info/pcsx_rearmed_libretro.info new file mode 100644 index 00000000..ad8d976b --- /dev/null +++ b/dist/info/pcsx_rearmed_libretro.info @@ -0,0 +1,16 @@ +display_name = "PlayStation1 (PCSX ReARMed)" +supported_extensions = "bin|cue|img|mdf|pbp|cbn|toc" +corename = "PCSX ReARMed" +manufacturer = "Sony" +systemname = "PlayStation" + +firmware_count = 3 + +firmware1_desc = "scph1001 (US BIOS)" +firmware1_path = "%sysdir%/scph1001.bin" + +firmware2_desc = "scph5501 (US BIOS Alternative)" +firmware2_path = "%sysdir%/scph5501.bin" + +firmware3_desc = "scph7001 (US BIOS Alternative)" +firmware3_path = "%sysdir%/scph7001.bin" diff --git a/dist/info/picodrive_libretro.info b/dist/info/picodrive_libretro.info new file mode 100644 index 00000000..0784a123 --- /dev/null +++ b/dist/info/picodrive_libretro.info @@ -0,0 +1,5 @@ +display_name = "Sega MS/GG/MD/CD/32X (Picodrive)" +supported_extensions = "md|smd|gen|sms|gg|sg|bin|cue|ios|32x" +corename = "Picodrive" +manufacturer = "Sega" +systemname = "Sega (Various)" diff --git a/dist/info/prboom_libretro.info b/dist/info/prboom_libretro.info new file mode 100644 index 00000000..f21bb605 --- /dev/null +++ b/dist/info/prboom_libretro.info @@ -0,0 +1,3 @@ +display_name = "Doom (PrBoom)" +supported_extensions = "wad|iwad" +corename = "prboom" diff --git a/dist/info/quicknes_libretro.info b/dist/info/quicknes_libretro.info new file mode 100644 index 00000000..a4f5c0f9 --- /dev/null +++ b/dist/info/quicknes_libretro.info @@ -0,0 +1,6 @@ +display_name = "NES / Famicom (QuickNES)" +supported_extensions = "nes" +corename = "QuickNES" +manufacturer = "Nintendo" +systemname = "Nintendo Entertainment System" + diff --git a/dist/info/scenewalker_libretro.info b/dist/info/scenewalker_libretro.info new file mode 100644 index 00000000..6edf3d7a --- /dev/null +++ b/dist/info/scenewalker_libretro.info @@ -0,0 +1,5 @@ +display_name = "3D Models (SceneWalker)" +recommended_extensions = "obj" +corename = "SceneWalker" +manufacturer = "Various" +systemname = "3D Models" diff --git a/dist/info/snes9x_libretro.info b/dist/info/snes9x_libretro.info new file mode 100644 index 00000000..d279af6f --- /dev/null +++ b/dist/info/snes9x_libretro.info @@ -0,0 +1,5 @@ +display_name = "SNES / Super Famicom (SNES9x)" +supported_extensions = "smc|fig|sfc|gd3|gd7|dx2|bsx|swc" +corename = "SNES9x" +manufacturer = "Nintendo" +systemname = "Super Nintendo Entertainment System" diff --git a/dist/info/snes9x_next_libretro.info b/dist/info/snes9x_next_libretro.info new file mode 100644 index 00000000..b9778ded --- /dev/null +++ b/dist/info/snes9x_next_libretro.info @@ -0,0 +1,5 @@ +display_name = "SNES / Super Famicom (SNES9x Next)" +supported_extensions = "smc|fig|sfc|gd3|gd7|dx2|bsx|swc" +corename = "SNES9x Next" +manufacturer = "Nintendo" +systemname = "Super Nintendo Entertainment System" diff --git a/dist/info/stella_libretro.info b/dist/info/stella_libretro.info new file mode 100644 index 00000000..0abb91f6 --- /dev/null +++ b/dist/info/stella_libretro.info @@ -0,0 +1,6 @@ +display_name = "Atari 2600 (Stella)" +supported_extensions = "a26|bin" +corename = "Stella" +manufacturer = "Atari" +systemname = "Atari 2600" + diff --git a/dist/info/tyrquake_libretro.info b/dist/info/tyrquake_libretro.info new file mode 100644 index 00000000..a1ca2f94 --- /dev/null +++ b/dist/info/tyrquake_libretro.info @@ -0,0 +1,3 @@ +display_name = "Quake 1 (TyrQuake)" +supported_extensions = "pak" +corename = "prboom" diff --git a/dist/info/vba_next_libretro.info b/dist/info/vba_next_libretro.info new file mode 100644 index 00000000..2fe0bd51 --- /dev/null +++ b/dist/info/vba_next_libretro.info @@ -0,0 +1,5 @@ +display_name = "Game Boy Advance (VBA Next)" +supported_extensions = "gba" +corename = "VBA Next" +manufacturer = "Nintendo" +systemname = "Game Boy Advance" diff --git a/dist/info/vbam_libretro.info b/dist/info/vbam_libretro.info new file mode 100644 index 00000000..dc11649b --- /dev/null +++ b/dist/info/vbam_libretro.info @@ -0,0 +1,5 @@ +display_name = "Game Boy Advance (VBA-M)" +supported_extensions = "gba" +corename = "VBA-M" +manufacturer = "Nintendo" +systemname = "Game Boy Advance" diff --git a/libretro-build.sh b/libretro-build.sh index 3105292c..fe80819a 100755 --- a/libretro-build.sh +++ b/libretro-build.sh @@ -30,7 +30,7 @@ if [ -z "$RARCH_DIST_DIR" ]; then fi if [ -z "$JOBS" ]; then - JOBS=4 + JOBS=7 fi die()