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>
This commit is contained in:
2026-08-17 18:00:33 +02:00
co-authored by Claude Opus 5
commit 48aeeebaf7
3 changed files with 203 additions and 0 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/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