diff -r 23efe87db6b6 -r 030bb9b4470b BuildingOnLinux.wiki --- a/BuildingOnLinux.wiki Mon Oct 10 20:05:01 2011 +0000 +++ b/BuildingOnLinux.wiki Sat Oct 22 18:04:17 2011 +0000 @@ -1,4 +1,4 @@ -#summary Instructions for building Hedgewars on Linux +#summary Instructions for building Hedgewars on Linux (debian focus) #labels Phase-Implementation,Phase-Deploy,Phase-Support = Introduction = @@ -11,6 +11,10 @@ {{{ sudo apt-get install mercurial cmake qt4-qmake libqt4-dev libsdl1.2-dev libsdl-net1.2-dev libsdl-mixer1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev liblua5.1-dev fpc }}} +note, if you want to try building the server as well (requires libghc base 4.3 right now) try these too: +{{{ +sudo apt-get install ghc libghc-binary-dev libghc-bytestring-show-dev libghc-dataenc-dev libghc-deepseq-dev libghc-hslogger-dev libghc-mtl-dev libghc-network-dev libghc-parsec3-dev +}}} = Building process = @@ -28,6 +32,7 @@ cmake -DCMAKE_BUILD_TYPE="DEBUG" -DCMAKE_INSTALL_PREFIX="$HOME/games" -DDATA_INSTALL_DIR="$HOME/games" -DWITH_SERVER=0 make install }}} +if you want to build the server as well, change -DWITH_SERVER=0 to -DWITH_SERVER=1 then wait for the build to complete, then run ...