Skip to content

Instantly share code, notes, and snippets.

@martijngastkemper
Last active August 18, 2019 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martijngastkemper/b9220fae8e911978afbda3cb6cd8b250 to your computer and use it in GitHub Desktop.
Save martijngastkemper/b9220fae8e911978afbda3cb6cd8b250 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Install OpenTTD on my RaspberryPi running Buster
## Download and extract
wget https://proxy.binaries.openttd.org/openttd-releases/1.9.2/openttd-1.9.2-source.tar.xz
tar -xf openttd-1.9.2-source.tar.xz
cd openttd-1.9.2
## Install without UI, because it's just a server
./configure --enabled-dedicated --without-liblzo2
./make --jobs=4
sudo ./make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment