Skip to content

Commit b78d4a0

Browse files
committed
Merge pull request supertuxkart#2372 from rugk/patch-1
Readme and Install.md improvments
2 parents a69eb99 + d1e0564 commit b78d4a0

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

INSTALL.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
#SuperTuxKart Installation Instructions
1+
# SuperTuxKart Installation Instructions
22

3-
Note : If you obtained this source code from github, you also need to download the game assets from sourceforge using SVN.
3+
Note: If you obtained this source code from Github, you also need to download the game assets from Sourceforge using SVN.
44

55
`svn checkout https://svn.code.sf.net/p/supertuxkart/code/stk-assets stk-assets`
66

77
Place the `stk-assets` folder next to the source root `stk-code` folder.
88
See <http://supertuxkart.sourceforge.net/Source_control> for more information
99

1010

11-
##Building STK on Linux
11+
## Building STK on Linux
1212

1313
First, make sure that you have the following packages installed:
1414

@@ -50,14 +50,18 @@ make VERBOSE=1 -j2
5050

5151
To create a debug version of STK, use:
5252

53-
`cmake .. -DCMAKE_BUILD_TYPE=Debug`
53+
```
54+
cmake .. -DCMAKE_BUILD_TYPE=Debug
55+
```
5456

5557
To test the compilation, supertuxkart can be run from the build
5658
directory by ./bin/supertuxkart
5759

5860
To install the file, as root execute:
5961

60-
`make install`
62+
```
63+
make install
64+
```
6165

6266
The default install location is `/usr/local`, i.e. the data files will
6367
be written to `/usr/local/share/games/supertuxkart`, the executable
@@ -66,9 +70,9 @@ location, specify `CMAKE_INSTALL_PREFIX` when running cmake, e.g.:
6670
`cmake .. -DCMAKE_INSTALL_PREFIX=/opt/stk`
6771

6872

69-
##Building STK on OS X
73+
## Building STK on OS X
7074
See <http://supertuxkart.sourceforge.net/Building_and_packaging_on_OSX>
7175

7276

73-
##Building STK on Windows
77+
## Building STK on Windows
7478
See <http://supertuxkart.sourceforge.net/How_to_build_the_Windows_version>

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#SuperTuxKart
1+
# SuperTuxKart
22
[![Build Status](https://travis-ci.org/supertuxkart/stk-code.png?branch=master)](https://travis-ci.org/supertuxkart/stk-code)
33

44
SuperTuxKart is a free kart racing game. It is focusing on fun and
@@ -15,17 +15,17 @@ Hope you enjoy the game.
1515
-- The SuperTuxKart development team.
1616

1717

18-
##Hardware Requirements
18+
## Hardware Requirements
1919
* You need a 3D graphics card. (NVIDIA GeForce 8xxx and higher, ATI Radeon HD 4xxx and higher or Intel HD 3000 and higher)
2020
* You should have a CPU that's running at 1GHz or better.
2121
* You'll need at least 512 MB of free VRAM (video memory).
2222
* Disk space: 400MB
2323
* Ideally, you want a joystick with at least 6 buttons.
2424

2525

26-
##Compiling SuperTuxKart
26+
## Compiling SuperTuxKart
2727

28-
###Windows
28+
### Windows
2929
1. Install VS 2013 (or later). The free express versions work fine.
3030
2. Download and install a source package - either a released package or from our [git/svn repositories](http://supertuxkart.sourceforge.net/Source_control)
3131
3. Download the latest dependency package depdendencies_for_0.8.2.zip from [here](https://sourceforge.net/projects/supertuxkart/files/SuperTuxKart%20Dependencies/Windows/). Unzip it in the root directory, so that the dependencies directory is next to the src and data directory (if you are updating from a previous dependency package, you can delete the .dll files in the root directory, they are not needed anymore).
@@ -38,24 +38,24 @@ Hope you enjoy the game.
3838
Compilation with cygwin is not officially supported, but
3939
this has been done (check with the forum for details).
4040

41-
###Mac OS X
41+
### Mac OS X
4242
The latest information about compilation on Mac are on our wiki:
4343
<http://supertuxkart.sourceforge.net/Building_and_packaging_on_OSX>
4444
The Xcode project file is in `/src/ide/Xcode/`, but it still
4545
requires that all dependencies are installed as explained on the wiki.
4646

47-
###UNIX
48-
See `INSTALL` for details.
47+
### UNIX
48+
See [`INSTALL.md`](INSTALL.md) for details.
4949

5050

51-
##License
51+
## License
5252
This software is released under the GNU General Public License (GPL) which
53-
can be found in the file `LICENSE` in the same directory as this file.
53+
can be found in the file [`COPYING`](/COPYING) in the same directory as this file.
5454
Information about the licenses for artwork are contained in
5555
`data/licenses`.
5656

5757

58-
##3D coordinates
58+
## 3D coordinates
5959
A reminder for those looking at the code and 3d models:
6060

6161
STK : X right, Y up, Z forwards

0 commit comments

Comments
 (0)