Imported Upstream version 2.1.2
[platform/upstream/fdupes.git] / INSTALL
1 Installing fdupes
2 --------------------------------------------------------------------
3 You're looking at a DEVELOPMENT version of fdupes. If you're not a software
4 developer or you just want to install the program, this is probably not the
5 version you want. This version of fdupes is currently in development and
6 subject to change. The features and functionality present in this version
7 may not reflect the features and functionality in the final release.
8
9 The easiest way to install fdupes is to use your operating system's package
10 manager, if available. If that's not an option or you'd prefer to compile
11 the program yourself (which may sometimes be the only way to obtain the
12 latest version), you should download a RELEASE version of fdupes and follow
13 the installation instructions provided with it.
14
15 As of this writing, fdupes releases may be downloaded from:
16
17         https://github.com/adrianlopezroche/fdupes/releases
18
19 If you're a programmer and you wish to use or work on this version of fdupes
20 you will need to install autoconf and automake on your system and run
21
22         autoreconf --install
23
24 to generate the configure script and other files needed for compilation and
25 installation. After that you may compile fdupes by running:
26
27         ./configure
28         make
29
30 and install it by running:
31
32         sudo make install
33