-
Notifications
You must be signed in to change notification settings - Fork 13
/
INSTALL
60 lines (42 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
Prerequisites
=============
Gnome Commander requires the following packages:
- A working GNOME platform including glib 2.66, gtk+ 3, and gio 2.0
- meson
Gnome Commander can also make use of the following packages:
- libexiv2
- taglib
- libgsf
- poppler
- yelp for documentation
The minimum version requirements can be found in the top-level meson.config.
If you install GNOME Commander by manually compiling the sources, keep in
mind that on most Linux distributions you have to install the development
packages for the above libraries to be found by the configure script.
These packages are normaly indicated by a "-dev" or "-devel" suffix,
e.g. libgnome-dev, taglib-dev, etc.
Many package managers provide a way to install all the build dependencies for
a package, such as 'dnf builddep' or 'apt-get build-dep', which will install
almost all of the above. The requirements may have changed slightly between
the version packaged in the distribution and the current development version,
so you might have to install some additional packages.
Simple install procedure
========================
% meson setup builddir # prepare the build
% meson compile -C builddir # build Gnome Commander
% meson install -C builddir # install Gnome Commander
This installs Gnome Commander to the default directory, usually under
'/usr/local/bin/'.
By default, the build will enable optional features if the packages they require
are installed. To check which options are available and which are enabled,
run 'meson configure builddir'.
Changing project options would then work as follows:
% meson configure builddir -Doption=value
Uninstall procedure
===================
If you want to uninstall Gnome Commander again, run as root:
% ninja -C builddir uninstall
The Details
===========
More detailed installation instructions can be found in meson's
website: https://mesonbuild.com/Quick-guide.html