This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
50 lines (37 loc) · 1.79 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
GLAME - Installation
====================
If you just checked out the CVS tree (which is recommended if you
can cope with the usual report bug - wait for the fix - update cvs
cycle and want to be bleeding edge) you first need to initialize the
build system by doing
> ./autogen.sh
If this fails somehow you probably need to update your autoconf, automake,
libtool and/or gettext packages to more recent versions. See the requirements
section in the README file for more information.
If you got the source package or have already initialized the build
system you can install glame by doing (usually you want to specify
a prefix for the install directory, you can do this via ./configure
--prefix=/my/install/location, default is /usr/local)
> ./configure
> make
> make install
If you are using a debian system you may even use
> dpkg-buildpackage
to get a .deb package build which you may then install using dpkg.
Note that there are quite a lot of configure options (./configure --help)
of which the following may come handy if the build process is failing:
- --disable-gui disables the use of gnome - and thus the generation of
the graphical user interface binary
If you experience bugs with glame, we encourage you to report them via
the bugtracking system of sourceforge or the development mailinglist.
Please try to be verbose about the failure, enabling extra debugging
output via the --enable-debug option is encouraged.
If you do not want to install the package, you can execute the generated
executables as (you _have_ to be in the src/ directory)
> cd src
> ./gui/glame
> ./cglame
For more about GLAME have a look into the README file and the current
documentation in the doc/ directory. You also may want to read the source which
is entirely contained in the src/ directory.
Yours, GLAME Team.