• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

data/H03-May-2022-

fx/H03-May-2022-

music/H03-May-2022-

png/H03-May-2022-

src/H14-Apr-2015-2,1051,849

xcf/H03-May-2022-

.gitignoreH A D14-Apr-20157 21

MakefileH A D14-Apr-20151.3 KiB4636

READMEH A D14-Apr-20151.5 KiB4826

griels.desktopH A D14-Apr-2015485 1817

README

1ABOUT THIS GAME
2
3"Griel's Quest for the Sangraal" is a game released for MSX2 systems in the year 1990 (only on Japan). In 2005 was ported to MSX1 systems by Karoshi Corp.
4
5This version is a port of MSX1 version of the game to the GNU/Linux systems. Featuring all the levels, objects and enemies. The program is written in C language
6with the help of SDL 1.2 libraries.
7
8The game is licensed under GNU GPL version 3, so anyone can download, see, change and redistributed the code.
9
10KEYS
11
12Use the arrows of keyboard to move Griel.
13F key switch between fullscreen/windowed mode.
14Q key exits the program.
15ESC key will restart the current game (losing a life).
16
17INSTALLATION FOR SOURCE
18
19To compile the program you need GCC compiler and SDL libraries. In Fedora systems you can install all of this packages with this command (as root):
20
21$ yum install gcc SDL-devel SDL_mixer-devel SDL_image-devel SDL_ttf-devel SDL_gfx-devel
22
23For Ubuntu/Debian users, run this:
24
25$ sudo apt-get install gcc libsdl1.2-dev libsdl-mixer1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-gfx1.2-dev
26
27Unpack the source code file:
28
29$ tar vxfz griels_quest_src_beta.tar.gz
30
31Enter the directory created an run:
32
33$ make
34As root, install the game with:
35
36$ make install
37
38(Ubuntu users run: $ sudo make install)
39
40A icon will appear in your application menu, in game section. Alternatively you can run the game with the order "griels".
41
42
43UNINSTALLATION FROM SOURCE
44
45Enter the directory and run (as root):
46
47$ make uninstall (Ubuntu users run: $ sudo make uninstall).
48