Updated to ubuntu/debian section in INSTALL file

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5389 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2010-05-06 18:40:34 +00:00
parent 97c53d9542
commit 252b29c6ef

View File

@ -48,8 +48,8 @@ libglu1-mesa-dev subversion autoconf automake1.9 g++ gcc
do a:
$ svn checkout https://supertuxkart.svn.sourceforge.net/svnroot/supertuxkart/main/branches/irrlicht
Get irrlicht-1.6.zip and unzip it, compile irrlicht:
$ cd irrlicht-1.6/source/Irrlicht/
Get irrlicht-1.x.zip and unzip it, compile irrlicht:
$ cd irrlicht-1.x/source/Irrlicht/
$ make
$ cd ../../..
$ pwd
@ -57,7 +57,8 @@ $ pwd
then we can move to stk, remember to replace the output of pwd below:
$ cd trunk
$ ./autogen.sh && ./configure --enable-irrlicht --with-irrlicht=/some/path/irrlicht-1.6/ && make
note that the "--with-irrlicht" argument below is only required if you didn't install irrlicht to /usr/[local]
$ ./autogen.sh && ./configure --with-irrlicht=/some/path/irrlicht-1.x/ && make
and if all went well run the game:
$ src/supertuxkart
@ -70,7 +71,7 @@ $ svn up
and then, in most cases, just rebuild:
$ make
with the exception of changes to any Makefile.am, in which case:
$ ./autogen.sh && ./configure --enable-irrlicht --with-irrlicht=/some/path/irrlicht-1.6/ && make
$ ./autogen.sh && ./configure --with-irrlicht=/some/path/irrlicht-1.x/ && make
But it didn't work!