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
44 lines
1.2 KiB
Bash
44 lines
1.2 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-quicknes"
|
|
rp_module_desc="NES emulator - QuickNES Port for libretro"
|
|
rp_module_help="ROM Extensions: .nes .zip\n\nCopy your NES roms to $romdir/nes"
|
|
rp_module_licence="GPL2 https://raw.githubusercontent.com/libretro/QuickNES_Core/master/LICENSE"
|
|
rp_module_repo="git https://github.com/libretro/QuickNES_Core.git master"
|
|
rp_module_section="opt armv6=main"
|
|
|
|
function sources_lr-quicknes() {
|
|
gitPullOrClone
|
|
}
|
|
|
|
function build_lr-quicknes() {
|
|
make clean
|
|
make
|
|
md_ret_require="$md_build/quicknes_libretro.so"
|
|
}
|
|
|
|
function install_lr-quicknes() {
|
|
md_ret_files=(
|
|
'quicknes_libretro.so'
|
|
)
|
|
}
|
|
|
|
function configure_lr-quicknes() {
|
|
mkRomDir "nes"
|
|
defaultRAConfig "nes"
|
|
|
|
local def=0
|
|
isPlatform "armv6" && def=1
|
|
|
|
addEmulator "$def" "$md_id" "nes" "$md_inst/quicknes_libretro.so"
|
|
addSystem "nes"
|
|
}
|