| 1 | = Get it Running = |
| 2 | [[TracNav(TracNav/TOC)]] |
| 3 | == Ubuntu Linux == |
| 4 | |
| 5 | === Ubuntu Dapper Drake === |
| 6 | Installing Orxonox on Ubuntu Dapper Drake (6.06). |
| 7 | |
| 8 | === Installing the Libraries === |
| 9 | |
| 10 | {{{ |
| 11 | wraith root # apt-get install libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libqt4-dev libglut3-dev libglew-dev libopenal-dev libvorbis-dev libavformat-dev libcurl3-dev liblualib50-dev |
| 12 | ... |
| 13 | }}} |
| 14 | |
| 15 | === Installing developer tools === |
| 16 | |
| 17 | {{{ |
| 18 | wraith root # apt-get install subversion automake g++ |
| 19 | }}} |
| 20 | |
| 21 | === Getting the Source & Data === |
| 22 | |
| 23 | Check out the source and Data via svn anonymous, this will download the hole project to the directory orxonox-dir |
| 24 | {{{ |
| 25 | wraith user $ svn co http://svn.orxonox.net/orxonox orxonox-dir |
| 26 | wraith user $ svn co http://svn.orxonox.net/data orxonox-dir/data |
| 27 | }}} |
| 28 | You won't be able to commit (check in) anything with the anonymous repository. You have to ask us for user/pass combination. If you have already an account check it out like this: |
| 29 | {{{ |
| 30 | wraith user $ svn co https://svn.orxonox.net/orxonox orxonox-dir |
| 31 | wraith user $ svn co https://svn.orxonox.net/data orxonox-dir/data |
| 32 | }}} |
| 33 | You will be asked for user name and password, that you have from us. |
| 34 | |
| 35 | |
| 36 | === Compiling === |
| 37 | Just change into the trunk directory, execute configure and make.... |
| 38 | {{{ |
| 39 | wraith user $ cd ./orxonox-dir/trunk/ |
| 40 | wraith user $ ./autogen.sh |
| 41 | wraith user $ ./configure |
| 42 | ... |
| 43 | wraith user $ make |
| 44 | }}} |
| 45 | |
| 46 | === Playing === |
| 47 | {{{ |
| 48 | wraith user $ cd ./orxonox-dir/trunk/src |
| 49 | wraith user $ ./orxonox |
| 50 | }}} |
| 51 | Select the data file orxonox/data/trunk/data.oxd in the menu and play! |