Last active
August 18, 2019 09:05
-
-
Save martijngastkemper/b9220fae8e911978afbda3cb6cd8b250 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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