mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
63 lines
1.9 KiB
Bash
63 lines
1.9 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-vecx"
|
|
rp_module_desc="Vectrex emulator - vecx port for libretro"
|
|
rp_module_help="ROM Extensions: .vec .gam .bin .zip\n\nCopy your Vectrex roms to $romdir/vectrex"
|
|
rp_module_licence="GPL3 https://raw.githubusercontent.com/libretro/libretro-vecx/master/LICENSE.md"
|
|
rp_module_repo="git https://github.com/libretro/libretro-vecx.git master"
|
|
rp_module_section="main"
|
|
|
|
function depends_lr-vecx() {
|
|
local depends=()
|
|
isPlatform "mesa" && depends+=(libgles2-mesa-dev)
|
|
isPlatform "videocore" && depends+=(libraspberrypi-dev)
|
|
getDepends "${depends[@]}"
|
|
}
|
|
|
|
function sources_lr-vecx() {
|
|
gitPullOrClone
|
|
}
|
|
|
|
function build_lr-vecx() {
|
|
local params
|
|
isPlatform "videocore" && params+="platform=rpi"
|
|
isPlatform "gles" && params+=" HAS_GLES=1"
|
|
|
|
make clean
|
|
make -f Makefile.libretro $params
|
|
md_ret_require="$md_build/vecx_libretro.so"
|
|
}
|
|
|
|
function install_lr-vecx() {
|
|
md_ret_files=(
|
|
'vecx_libretro.so'
|
|
'bios/fast.bin'
|
|
'bios/skip.bin'
|
|
'bios/system.bin'
|
|
)
|
|
}
|
|
|
|
function configure_lr-vecx() {
|
|
mkRomDir "vectrex"
|
|
defaultRAConfig "vectrex"
|
|
|
|
if [[ "$md_mode" == "install" ]]; then
|
|
# Copy bios files
|
|
cp -v "$md_inst/"{fast.bin,skip.bin,system.bin} "$biosdir/"
|
|
chown "$__user":"$__group" "$biosdir/"{fast.bin,skip.bin,system.bin}
|
|
else
|
|
rm -f "$biosdir/"{fast.bin,skip.bin,system.bin}
|
|
fi
|
|
|
|
addEmulator 1 "$md_id" "vectrex" "$md_inst/vecx_libretro.so"
|
|
addSystem "vectrex"
|
|
}
|