Skip to content

Commit 404cedb

Browse files
committed
Installation Instructions
1 parent 9d10bf8 commit 404cedb

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,52 @@ Creating forks and porting to additional platforms is encouraged, but these typi
1414
Franticware claims rights to the name "MultiRacer" which should not be used by other parties for their products or ports. That is the reason for changing the title to OpenMRac, to which no such restrictions apply.
1515

1616
Game data files are in a separate repository under a different license: https://github.com/Franticware/OpenMRac-data
17+
18+
# Installation Instructions
19+
20+
## Windows
21+
22+
Download here: https://www.franticware.com/openmrac
23+
24+
## Linux
25+
26+
### Arch-based (Arch, Manjaro, EndeavourOS, ...)
27+
28+
Install **openmrac** package from AUR
29+
30+
### Debian-based (Debian, Raspberry Pi OS, Ubuntu, MX Linux, Mint, ...)
31+
32+
* Install **sox**
33+
* Install development packages for OpenGL, OpenAL, SDL 1.2, jpeg, png
34+
* Run the following to generate **openmrac.deb** package:
35+
36+
```
37+
mkdir openmrac-deb
38+
cd openmrac-deb
39+
git clone https://github.com/Franticware/OpenMRac.git
40+
git clone https://github.com/Franticware/OpenMRac-data.git
41+
cd OpenMRac/src
42+
make -f Makefile.linux deb
43+
cd ../../..
44+
```
45+
46+
* Install the package:
47+
48+
```
49+
sudo dpkg -i openmrac-deb/OpenMRac/src/debian/openmrac.deb
50+
```
51+
52+
### Other (openSUSE, Fedora, ...)
53+
54+
```
55+
git clone https://github.com/Franticware/OpenMRac-data.git
56+
cd OpenMRac-data
57+
make install
58+
59+
git clone https://github.com/Franticware/OpenMRac.git
60+
cd OpenMRac/src
61+
make -f Makefile.linux install
62+
```
63+
64+
## Mac OS X
65+
TODO

0 commit comments

Comments
 (0)