DEADSOFTWARE

Added COPYING file, INSTALL with installation instructions and simple script copy...
[flatwaifu.git] / INSTALL
1 Basic Installation
2 ==================
3
4 Currently to install Doom2D:Rembo from sources you need to have:
5
6 1. libSDL headers (SDL.h and SDL_mixer.h) at /usr/include/SDL
7
8 In Debian GNU/Linux you can install them with this command:
9
10 apt-get install libsdl1.2-dev libsdl-mixer1.2-dev
11
12 2. CMake to configure
13
14 3. GCC and make to build
15
16 4. libSDL.so and libSDL_mixer.so at /usr/lib to run
17
18 To proceed installation:
19
20 1. `cd' to the directory containing the package's source code
21 e.g. `cd doom2d-rembo/src' and type
22
23 mkdir build
24 cd build
25 cmake ..
26
27 to configure installation with Cmake automatically
28
29 2. If CMake configured project successfully type
30
31 make
32
33 to compile project and then
34
35 make install
36
37 to install under /usr/local/bin
38
39 3. When compilation finished successfully simply run
40
41 cd ..
42 ./copy.sh
43
44 script to copy doom2d music and wad's to
45 /usr/share/doom2d-rembo directory.
46
47 4. Finally, to run Doom2D:Rembo `cd' to the
48 directory you copied binary, music and wad's
49 and type
50
51 ./doom2d
52
53 and enjoy game.