-
Notifications
You must be signed in to change notification settings - Fork 2
/
INSTALL
75 lines (43 loc) · 1.51 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Basic Installation
==================
Currently to install Doom2D:Rembo from sources you need to have:
1. SDL and SDL_mixer (not SDL2!)
In Debian GNU/Linux you can install them with this command:
apt-get install libsdl1.2-dev libsdl-mixer1.2-dev
On macOS (using MacPorts):
sudo port install libsdl libsdl_mixer
2. CMake to configure
3. GCC or Clang to compile and make to build
To proceed installation:
1. `cd' to the directory containing the package's source code
e.g. `cd doom2d-rembo/src' and type
mkdir build
cd build
cmake ..
to configure installation with Cmake automatically
2. If CMake configured project successfully type
make
to compile project and then
make install
to install under /usr/local/bin
3. When compilation finished successfully simply run
cd ..
./copy.sh
script to copy doom2d music and wad's to
/usr/share/doom2d-rembo directory.
4. Finally, to run Doom2D:Rembo and type
/usr/local/bin/doom2d
and enjoy game.
Installation with package manager
=================================
Also deb package for binary installation are provided.
There are both 32-bit and 64-bit packages.
You can install them in such way:
dpkg -i doom2d-rembo_1.35.1_i386.deb
or
dpkg -i doom2d-rembo_1.35.1_amd64.deb
Music and wad's will be installed at
/usr/share/doom2d-rembo directory and
doom2d binary at /usr/bin
To remove Doom2D:Rembo type
dpkg -r doom2d-rembo