forked from ecraven/gtkevemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
62 lines (40 loc) · 1.67 KB
/
README
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
This is the README file for GtkEveMon. It covers:
* Building GtkEveMon
* Running GtkEveMon
* Installing GtkEveMon
* Uninstalling GtkEveMon
STEP 1: BUILDING
=====================================================================
GtkEveMon comes in form of source code. You can take a look at the
code, it's all located in the "src/" directory. In order to execute
it, it needs to be build. It does not come with a configure script.
So just execute the following command:
$ make
To build a debug version simple run
$ make debug
STEP 2: RUNNING
=====================================================================
Note that you DO NOT NEED to install GtkEveMon in order to use it.
If you don't want to install GtkEveMon, issue the following commands,
relative to this README file:
$ cd src
$ ./gtkevemon
If you're going to install GtkEveMon (read below), just type
"gtkevemon" anywhere in your system or make a nice shortcut in
your window manager yourself.
OPTION: INSTALLING
=====================================================================
Make sure your current working directory is relative to this file.
To install GtkEveMon execute the following command (as super user):
# make install
The files will be installed to "/usr/local/bin". If you want to change
that, edit the Makefile.
Configuration files as well as data files (SkillTree.xml and
CertificateTree.xml) are placed in "~/.gtkevemon" whether you
install GtkEveMon or not.
OPTION: UNINSTALLING
=====================================================================
If you want to uninstall GtkEveMon, just type
following command (as super user):
# make uninstall
This will not remove your user data in your home directory.