Skip to content

Instantly share code, notes, and snippets.

@thejhh
Created September 9, 2011 15:20
Show Gist options
  • Save thejhh/1206496 to your computer and use it in GitHub Desktop.
Save thejhh/1206496 to your computer and use it in GitHub Desktop.
Building Freeciv 2.3.0 on Debian-based system

Building Freeciv 2.3.0 on Debian-based system

First install all dependencies from older Freeciv client (packed with the official repo):

sudo apt-get build-dep freeciv-client-gtk

Then it's basically this:

wget http://downloads.sourceforge.net/project/freeciv/Freeciv%202.3/2.3.0/freeciv-2.3.0.tar.bz2
bzcat freeciv-2.3.0.tar.bz2|tar xf -
cd freeciv-2.3.0
./configure --prefix=$HOME/opt/freeciv
make
make install

Now you can start the client with command:

~/opt/freeciv/bin/freeciv-gtk2
@nictuku
Copy link

nictuku commented May 6, 2012

Thanks for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment