File: INSTALL

package info (click to toggle)
wormux 0.7.4-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 35,492 kB
  • ctags: 2,984
  • sloc: cpp: 19,380; xml: 3,555; sh: 3,358; makefile: 401
file content (96 lines) | stat: -rw-r--r-- 2,227 bytes parent folder | download
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
Wormux 0.7


*** Translations of this document are available in doc/ subdirectory ***


Compilation/Installation under Linux
-----------------------------------

==============
* Dependencies
==============

If the following software is not presently on your system, you will need to download them
before attempting to install Wormux 0.7 on your computer...

* SDL
-----

Wormux needs the SDL library version 1.2.

It can be downloaded of their website: http://www.libsdl.org/

* SDL mixer, SDL image, SDL ttf and SDL gfx
-------------------------------------------

SDL is splitted is small modules. Wormux needs mixer (sound), image (load
picture file), ttf (draw text) and gfx (graphical things).

You may have trouble to install SDL gfx: Wormux *needs* version 2.0.13 or
greater. Download it and compile it.

Here are their website:
 http://www.libsdl.org/projects/SDL_ttf/
 http://www.libsdl.org/projects/SDL_mixer/
 http://www.libsdl.org/projects/SDL_image/
 http://www.ferzkopp.net/Software/SDL_gfx-2.0/

* libxml++
----------

Wormux uses the libxml++ library version 2.6.

Get it here: http://libxmlplusplus.sourceforge.net/

Under Debian, use the command:
	apt-get install libxml++2.6-dev


============================
* Compilation / Installation
============================

If you're using SubVersion version of Wormux, will have first to type:

    ./autogen.sh

Under Linux, enter the Wormux directory, then simply type:

	./configure
	make
	
then, as root, type:
	
	make install

By default, the game is installed in /usr/local. But you can specify another
directory (useful if you don't have access to the root account) by modifying the
initial configure command:

	./configure --prefix=/OTHER/DIRECTORY/HERE

==============
* Uninstalling
==============

To uninstall Wormux, go to the source directory, then (as root):

	make uninstall


===============
* Other options
===============

Many options can be used with the configure command.
The most useful (for developers, at least) being:

	./configure --enable-debug

This enables you to compile Wormux with debug options, allowing you to track down bugs/other problems.

To get a list of all the other configuration options, type:

	./configure --help