This repository provides self-contained distro-agnostic AppImages of the
t3make
(TADS 3 compiler) and frob
(terminal interpreter) executables
provided by the FrobTADS project, so as to make them much easier to install on
Linux, since you will no longer need to build them from source.
This repository also contains an "Author's Kit" for Linux, distributed as a ZIP file, which provides:
- the TADS 3 compiler (t3make)
- the TADS 2/3 terminal interpreter/runner (frob)
- the TADS 3 system libraries (including adv3)
- the alternative standard library, adv3lite
To install just the bare executable appimages, follow these three steps:
- Go to the Releases page in the right sidebar of this GitHub project and
download the
frob-x86_64.AppImage
andt3make-x86_64.AppImage
files - Run
chmod +x
on both files in the terminal to make them executable - Move them to somewhere in your shell's PATH, such as
/usr/local/bin/
or, preferably,$HOME/.local/bin/
After installation, you'll be able to use the frob command by running:
$ frob-x86_64.AppImage myGameFile.t3
and the t3make compiler by running:
$ # in a valid TADS 3 project
$ t3make-x86_64.AppImage
To install the full distribution, follow these steps:
- Go to the Releases page on the right sidebar of this GitHub project and
download
authors-kit.zip
- Unzip the folder
- follow the steps in the previous section regarding the two appimages
- then move the
tads3/
folder wherevery you want, probably to your home directory - Point your t3m file's
-FI
and-FL
directeves at the relevanttads3/include
andtads3/lib
directories wherever you moved thetads3/
folder