mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
libretro ports now don't include the "ports/" path in the call as it's handled by the new function
43 lines
1.3 KiB
Bash
43 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-virtualjaguar"
|
|
rp_module_desc="Atari Jaguar emu - Virtual Jaguar (optimised) port for libretro"
|
|
rp_module_help="ROM Extensions: .j64 .jag .zip\n\nCopy your Atari Jaguar roms to $romdir/atarijaguar"
|
|
rp_module_licence="GPL3 https://raw.githubusercontent.com/libretro/virtualjaguar-libretro/master/docs/GPLv3"
|
|
rp_module_repo="git https://github.com/libretro/virtualjaguar-libretro.git master"
|
|
rp_module_section="exp"
|
|
rp_module_flags="!armv6"
|
|
|
|
function sources_lr-virtualjaguar() {
|
|
gitPullOrClone
|
|
}
|
|
|
|
function build_lr-virtualjaguar() {
|
|
make clean
|
|
make
|
|
md_ret_require="$md_build/virtualjaguar_libretro.so"
|
|
}
|
|
|
|
function install_lr-virtualjaguar() {
|
|
md_ret_files=(
|
|
'virtualjaguar_libretro.so'
|
|
'README.md'
|
|
)
|
|
}
|
|
|
|
function configure_lr-virtualjaguar() {
|
|
mkRomDir "atarijaguar"
|
|
defaultRAConfig "atarijaguar"
|
|
|
|
addEmulator 1 "$md_id" "atarijaguar" "$md_inst/virtualjaguar_libretro.so"
|
|
addSystem "atarijaguar"
|
|
}
|