1Requirements
2==================
3
4Before use this program you need to install:
5
6Qt4:
7https://download.qt.io/archive/qt/
8
9nxcomp + nxproxy:
10https://code.x2go.org/releases/source/nx-libs/
11
12You may want also install the PulseAudio sound server and client to enable sound support
13https://www.freedesktop.org/wiki/Software/PulseAudio/Download/
14
15
16Building
17==================
18
19Edit the Makefile to suit your needs.
20
21Variables that may need modifications are:
22  - QMAKE_BINARY
23  - LRELEASE_BINARY
24
25Variables that are being used by the install targets called later and might
26need modifications are:
27  - PREFIX
28  - ETCDIR
29
30Everything else should be left as-is.
31
32------------------
33
34On Linux-based systems, run:
35
36make all
37
38or
39
40make build_client
41
42to build X2Go Client.
43
44
45Installing
46==================
47
48On Linux-based systems, run:
49
50make install
51
52to install X2Go Client.
53
54Alternatively, use one of the targets:
55  - install_client: for X2Go Client only
56  - install_man: for the man pages only
57
58
59Uninstalling
60==================
61
62On Linux-based systems, use the same procedure as lined out in the "Installing"
63section, but replace "install" with "uninstall".
64