INSTALL 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. SUPERTUXKART INSTALLATION INSTRUCTIONS
  2. ======================================
  3. General
  4. -------
  5. First, make sure that you have the following packages installed:
  6. * OpenGL (or Mesa 3.0 or later)
  7. * OpenAL (recommended: openal-soft-devel)
  8. * Ogg (libogg-dev)
  9. * Vorbis (libvorbis-dev)
  10. * fribidi (fribidi-devel) - optional for right-to-left text
  11. Unpack the files from the tarball like this:
  12. tar xzf supertuxkart-*.tar.gz
  13. cd supertuxkart-*
  14. where '*' is the version of SuperTuxkart you downloaded - eg 0.8.0. Then:
  15. * Build irrlicht (atm, this will be included in cmake soonish)
  16. cd lib/irrlicht/source/Irrlicht
  17. NDEBUG=1 make
  18. * Compile SuperTuxKart:
  19. mkdir cmake_build
  20. cd cmake_build
  21. cmake ..
  22. make VERBOSE=1 -j2
  23. To create a debug version of STK, use:
  24. cmake .. -DCMAKE_BUILD_TYPE=Debug
  25. To test the compilation, supertuxkart can be run from the build
  26. directory by ./bin/supertuxkart
  27. To install the file, as root execute:
  28. make install
  29. The default install location is /usr/local, i.e. the data files will
  30. be written to /usr/local/share/games/supertuxkart, the executable
  31. will be copied to /usr/local/bin. To change the default installation
  32. location, specify CMAKE_INSTALL_PREFIX when running cmake, e.g.:
  33. cmake .. -DCMAKE_INSTALL_PREFIX=/opt/stk
  34. Building STK on OS X
  35. --------------------
  36. See http://supertuxkart.sourceforge.net/Building_and_packaging_on_OSX
  37. Building STK on Windows
  38. -----------------------
  39. See http://supertuxkart.sourceforge.net/How_to_build_the_Windows_version