Files
ttg-retroarch-store/install.sh
T
mr.zeroandClaude Opus 5 48aeeebaf7 The Teletype Games store for RetroArch
Config plus a wrapper installer; all the logic is in the shared engine,
warp-engine-retroarch-store. Two playlists — Commodore 64 and TIC-80 —
carrying the six released and archived cartridges in the catalog, 233 KB
in total.

That is the cartridge half of what we publish. The rest are native and web
builds, which no libretro core runs; on a Batocera box those install as
Ports through ttg-batocera-store instead.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-17 18:00:33 +02:00

11 lines
579 B
Bash
Executable File

#!/bin/bash
# Install the Teletype Games store into this machine's RetroArch.
#
# bash <(curl -fsSL https://git.teletypegames.org/tools/ttg-retroarch-store/raw/branch/master/install.sh)
#
# All the work is done by the engine's installer; this only says which store.
set -euo pipefail
ENGINE_RAW_BASE="${ENGINE_RAW_BASE:-https://git.teletypegames.org/tools/warp-engine-retroarch-store/raw/branch/master}"
export STORE_CONFIG="${STORE_CONFIG:-https://git.teletypegames.org/tools/ttg-retroarch-store/raw/branch/master/config.json}"
curl -fsSL "$ENGINE_RAW_BASE/install.sh" | bash