mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
50 lines
1.8 KiB
Bash
50 lines
1.8 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# This file is part of The RetroPie Project
|
|
#
|
|
# The RetroPie Project is the legal property of its developers, whose names are
|
|
# too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
|
|
#
|
|
# See the LICENSE.md file at the top-level directory of this distribution and
|
|
# at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
|
|
#
|
|
|
|
rp_module_id="lr-atari800"
|
|
rp_module_desc="Atari 8-bit/800/5200 emulator - Atari800 port for libretro"
|
|
rp_module_help="ROM Extensions: .a52 .bas .bin .car .xex .atr .xfd .dcm .atr.gz .xfd.gz\n\nCopy your Atari800 games to $romdir/atari800\n\nCopy your Atari 5200 roms to $romdir/atari5200 You need to copy the Atari 800/5200 BIOS files (5200.ROM, ATARIBAS.ROM, ATARIOSB.ROM and ATARIXL.ROM) to the folder $biosdir"
|
|
rp_module_licence="GPL2 https://raw.githubusercontent.com/libretro/libretro-atari800/master/atari800/COPYING"
|
|
rp_module_repo="git https://github.com/libretro/libretro-atari800.git master"
|
|
rp_module_section="main"
|
|
|
|
function sources_lr-atari800() {
|
|
gitPullOrClone
|
|
}
|
|
|
|
function build_lr-atari800() {
|
|
make clean
|
|
CFLAGS+=" -DDEFAULT_CFG_NAME=\\\".lr-atari800.cfg\\\"" make
|
|
md_ret_require="$md_build/atari800_libretro.so"
|
|
}
|
|
|
|
function install_lr-atari800() {
|
|
md_ret_files=(
|
|
'atari800_libretro.so'
|
|
'atari800/COPYING'
|
|
)
|
|
}
|
|
|
|
function configure_lr-atari800() {
|
|
mkRomDir "atari800"
|
|
mkRomDir "atari5200"
|
|
|
|
defaultRAConfig "atari800"
|
|
defaultRAConfig "atari5200"
|
|
|
|
mkUserDir "$md_conf_root/atari800"
|
|
moveConfigFile "$home/.lr-atari800.cfg" "$md_conf_root/atari800/lr-atari800.cfg"
|
|
|
|
addEmulator 1 "lr-atari800" "atari800" "$md_inst/atari800_libretro.so"
|
|
addEmulator 1 "lr-atari800" "atari5200" "$md_inst/atari800_libretro.so"
|
|
addSystem "atari800"
|
|
addSystem "atari5200"
|
|
}
|