Difference between revisions of "Freeciv"

From Linuxintro
imported>ThorstenStaerk
(New page: Freeciv is one of the best Linux games, but hard and complicated to install. With it, you can be the leader of a civilization and conquer the world. Decide if you want to go to war, de...)
 
imported>ThorstenStaerk
Line 2: Line 2:
  
 
= Install it =
 
= Install it =
 +
To install it, [[find out your distribution]] and proceed accordingly:
 +
 +
== SUSE Linux 11.3 ==
 +
This is an example that works with freeciv 2.1.8 on SUSE Linux 11.3
 +
* Install SDL, a multimedia framework, and gcc-c++, a compiler
 +
yast -i libSDL-devel libSDL-image-devel gcc-c++
 +
* Download the source from http://freeciv.wikia.com/wiki/Main_Page
 +
bunzip2 freeciv-2.1.8.tar.bz2
 +
tar xvf freeciv-2.1.8.tar
 +
cd freeciv-2.1.8
 +
./configure --enable-client=sdl && make -j8 && make install
 +
 +
== SUSE Linux 11.1 ==
 
This is an example that works with freeciv 2.1.8 on SUSE Linux 11.1, but it should work with every distribution.
 
This is an example that works with freeciv 2.1.8 on SUSE Linux 11.1, but it should work with every distribution.
 
* Install SDL mixer devel
 
* Install SDL mixer devel

Revision as of 12:47, 6 November 2010

Freeciv is one of the best Linux games, but hard and complicated to install. With it, you can be the leader of a civilization and conquer the world. Decide if you want to go to war, develop your science or build world wonders and so on.

Install it

To install it, find out your distribution and proceed accordingly:

SUSE Linux 11.3

This is an example that works with freeciv 2.1.8 on SUSE Linux 11.3

  • Install SDL, a multimedia framework, and gcc-c++, a compiler
yast -i libSDL-devel libSDL-image-devel gcc-c++
bunzip2 freeciv-2.1.8.tar.bz2
tar xvf freeciv-2.1.8.tar
cd freeciv-2.1.8
./configure --enable-client=sdl && make -j8 && make install

SUSE Linux 11.1

This is an example that works with freeciv 2.1.8 on SUSE Linux 11.1, but it should work with every distribution.

  • Install SDL mixer devel
yast -i sdl-mixer-devel
bunzip2 freeciv-2.1.8.tar.bz2
tar xvf freeciv-2.1.8.tar
cd freeciv-2.1.8
./configure && make -j4 && make install