This repository contains a copy of The Server Room by Daniel Bartholomew. https://www.linuxjournal.com/magazine/tale-two-languages ftp://ftp.linuxjournal.com/pub/lj/listings/issue174/10130.tgz Only the Inform 7 code mentioned being licensed under the GNU GPL 3.0. The specific extension used by the Inform 7 version would actually cause the game to include the "or, at your option, any later version" wording as well. http://inform7.com/extensions/Free%20Software%20Foundation/GNU%20General%20Public%20License%20v3/index.html Since the Inform 6 version did not mention a license, Daniel Bartholomew was contacted and confirmed that both were intended to be licensed in that way: https://social.bobcall.me/@jxself/102647489956981568 The recommended way to get a copy of this git repository is a recursive clone: git clone --recursive https://jxself.org/git/the-server-room.git This will clone all submodules recurively. If you did not perform a recurive clone, once you have a copy of this git repository you will also need the source code for the standard library: git submodule update --init --recursive To compile this game you will also need version 6 of the Inform compiler from https://jxself.org/git/?p=inform.git Once the compiler has been compiled and is ready for use return to this directory and run: inform +include_path=lib the-server-room.inf Or you can run the included build.sh script which does the same thing. You will then get the story file for this game that can be run using any appropriate Z-Machine interpreter, such as Frotz. Your GNU/Linux distro probably has that packaged already for easy installation. --- Copyright (C) 2019 Jason Self You can redistribute and/or modify this file under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this file. If not, see .