mirror of
https://github.com/RetroPie/RetroPie-Setup.git
synced 2025-04-02 10:51:41 -04:00
69 lines
1.9 KiB
Bash
69 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="ti99sim"
|
|
rp_module_desc="TI-99/SIM - Texas Instruments Home Computer Emulator"
|
|
rp_module_help="ROM Extension: .ctg\n\nCopy your TI-99 games to $romdir/ti99\n\nCopy the required BIOS file TI-994A.ctg (case sensitive) to $biosdir"
|
|
rp_module_licence="GPL2 https://www.mrousseau.org/programs/ti99sim"
|
|
rp_module_repo="file $__archive_url/ti99sim-0.16.0.src.tar.gz"
|
|
rp_module_section="exp"
|
|
rp_module_flags="!:\$__gcc_version:-lt:8"
|
|
|
|
function depends_ti99sim() {
|
|
getDepends libsdl2-dev libssl-dev
|
|
}
|
|
|
|
function sources_ti99sim() {
|
|
downloadAndExtract "$md_repo_url" "$md_build" --strip-components 1
|
|
# add missing include to fix compilation on newer g++
|
|
applyPatch "$md_data/missing_cstring.diff"
|
|
}
|
|
|
|
function build_ti99sim() {
|
|
make clean
|
|
make
|
|
}
|
|
|
|
function install_ti99sim() {
|
|
md_ret_files=(
|
|
'bin/ti99sim-sdl'
|
|
'bin/convert-ctg'
|
|
'bin/catalog'
|
|
'bin/disk'
|
|
'bin/dumpgrom'
|
|
'bin/mkcart'
|
|
'bin/ti99sim-console'
|
|
'doc/COPYING'
|
|
'doc/main.css'
|
|
'doc/README.html'
|
|
)
|
|
}
|
|
|
|
function configure_ti99sim() {
|
|
mkRomDir "ti99"
|
|
|
|
addEmulator 1 "$md_id" "ti99" "$md_inst/ti99sim.sh -f %ROM%"
|
|
addSystem "ti99"
|
|
|
|
[[ "$md_mode" == "remove" ]] && return
|
|
|
|
moveConfigDir "$home/.ti99sim" "$md_conf_root/ti99/"
|
|
ln -sf "$biosdir/TI-994A.ctg" "$md_inst/TI-994A.ctg"
|
|
|
|
local file="$md_inst/ti99sim.sh"
|
|
cat >"$file" << _EOF_
|
|
#!/bin/bash
|
|
pushd "$md_inst"
|
|
./ti99sim-sdl "\$@"
|
|
popd
|
|
_EOF_
|
|
chmod +x "$file"
|
|
}
|