Fix INSTALL
[tig] / INSTALL
... / ...
CommitLineData
1Installation instructions
2-------------------------
3
4Download a tarball from http://jonas.nitro.dk/tig/releases[] or clone the tig
5repository http://jonas.nitro.dk/tig/tig.git[]. Documentation files are
6available either in the tarballs or in the above repository in the branch named
7'release'.
8
9To install tig simply run:
10
11 $ autoreconf
12 $ ./configure
13 $ make install
14
15To install documentation run:
16
17 $ make install-doc
18
19If you had to install your own copy of libiconv, you'll probably want to pass
20the "--with-libiconv" option to the "configure" script to tell it where to look.
21
22The following tools and packages are needed:
23
24`-------------------------------`----------------------------------------------
25Tool Description
26-------------------------------------------------------------------------------
27git-core Tig is just a frontend for git.
28ncurses Be sure to also have development files \
29 installed. Usually they are available in a \
30 separate package ending with `-dev`.
31iconv If iconv is not provided by the c library \
32 you need to change the Makefile to link it \
33 into the binary.
34asciidoc (>= 7.0), xmlto For building documentation. (Optional)
35-------------------------------------------------------------------------------