RetroPie-Setup/scriptmodules/libretrocores/lr-beetle-lynx.sh
Jools Wills 7ac3877b44 Switch to using defaultRAConfig
libretro ports now don't include the "ports/" path in the call as it's handled by the new function
2022-05-22 13:09:12 +01:00

41 lines
1.3 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-beetle-lynx"
rp_module_desc="Atari Lynx emulator - Mednafen Lynx Port for libretro, itself a fork of Handy"
rp_module_help="ROM Extensions: .lnx .zip\n\nCopy your Atari Lynx roms to $romdir/atarilynx\n\nCopy the required BIOS file lynxboot.img to $biosdir"
rp_module_licence="GPL2 https://raw.githubusercontent.com/libretro/beetle-lynx-libretro/master/COPYING"
rp_module_repo="git https://github.com/libretro/beetle-lynx-libretro.git master"
rp_module_section="opt"
function sources_lr-beetle-lynx() {
gitPullOrClone
}
function build_lr-beetle-lynx() {
make clean
make
md_ret_require="$md_build/mednafen_lynx_libretro.so"
}
function install_lr-beetle-lynx() {
md_ret_files=(
'mednafen_lynx_libretro.so'
)
}
function configure_lr-beetle-lynx() {
mkRomDir "atarilynx"
defaultRAConfig "atarilynx"
addEmulator 0 "$md_id" "atarilynx" "$md_inst/mednafen_lynx_libretro.so"
addSystem "atarilynx"
}