mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
41 lines
1.3 KiB
Bash
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-ep128emu"
|
|
rp_module_desc="Enterprise 128 emulator"
|
|
rp_module_help="ROM Extensions: .img .dsk .tap .dtf .wav .bas .com .trn .128\n\nCopy your Enterprise games to $romdir/enterprise"
|
|
rp_module_licence="GPL2 https://raw.githubusercontent.com/libretro/ep128emu-core/refs/heads/core/COPYING"
|
|
rp_module_repo="git https://github.com/libretro/ep128emu-core.git core"
|
|
rp_module_section="exp"
|
|
|
|
function sources_lr-ep128emu() {
|
|
gitPullOrClone
|
|
}
|
|
|
|
function build_lr-ep128emu() {
|
|
make clean
|
|
make
|
|
md_ret_require="$md_build/ep128emu_core_libretro.so"
|
|
}
|
|
|
|
function install_lr-ep128emu() {
|
|
md_ret_files=(
|
|
'ep128emu_core_libretro.so'
|
|
)
|
|
}
|
|
|
|
function configure_lr-ep128emu() {
|
|
mkRomDir "enterprise"
|
|
ensureSystemretroconfig "enterprise"
|
|
|
|
addEmulator 1 "$md_id" "enterprise" "$md_inst/ep128emu_core_libretro.so"
|
|
addSystem "enterprise"
|
|
}
|