RetroPie-Setup/scriptmodules/libretrocores/lr-mame2003-plus.sh
Jools Wills 7bcdc6a956 libretrocores - added rp_module_repo to all libretro cores
Also use new location for lr-meseon repo due to repository move
2021-02-15 23:54:13 +00:00

41 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-mame2003-plus"
rp_module_desc="Arcade emu - updated MAME 0.78 port for libretro with added game support"
rp_module_help="ROM Extension: .zip\n\nCopy your MAME roms to either $romdir/mame-libretro or\n$romdir/arcade"
rp_module_licence="NONCOM https://raw.githubusercontent.com/libretro/mame2003-plus-libretro/master/LICENSE.md"
rp_module_repo="git https://github.com/libretro/mame2003-plus-libretro.git master"
rp_module_section="opt"
function _get_dir_name_lr-mame2003-plus() {
echo "mame2003-plus"
}
function _get_so_name_lr-mame2003-plus() {
echo "mame2003_plus"
}
function sources_lr-mame2003-plus() {
gitPullOrClone
}
function build_lr-mame2003-plus() {
build_lr-mame2003
}
function install_lr-mame2003-plus() {
install_lr-mame2003
}
function configure_lr-mame2003-plus() {
configure_lr-mame2003
}