Fixed displaying local tags.
[tig] / INSTALL
CommitLineData
f4657f00
JF
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
c9ae230f 6available in the tarballs and in the 'release' branch of the tig repository.
f4657f00 7
c9ae230f
JF
8The quick and simple way to install tig with documentation is to run:
9
10 $ make
11 $ make install install-doc
12
13Optionally, you can use the `configure` script to detect library location:
f4657f00 14
ec31d0d0 15 $ ./configure
c9ae230f 16 $ make
f4657f00
JF
17 $ make install
18
c9ae230f
JF
19If your iconv library is not in the default library and include path, you'll
20probably want to pass the "--with-libiconv" option to the "configure" script to
21tell it where to look. Note, if you are building from the tig repository, you
22need to first make the configure script:
f4657f00 23
c9ae230f 24 $ make configure
42ea463a 25
f4657f00
JF
26The following tools and packages are needed:
27
28`-------------------------------`----------------------------------------------
29Tool Description
30-------------------------------------------------------------------------------
31git-core Tig is just a frontend for git.
32ncurses Be sure to also have development files \
2bc4f7bd 33 installed. Usually they are available in a \
f4657f00 34 separate package ending with `-dev`.
42ea463a
JF
35iconv If iconv is not provided by the c library \
36 you need to change the Makefile to link it \
37 into the binary.
5f053ea3
JF
38-------------------------------------------------------------------------------
39
c9ae230f
JF
40The following optional tools and packages are needed for creating the
41configure script and building documentation:
5f053ea3
JF
42
43`-------------------------------`----------------------------------------------
c9ae230f
JF
44autoconf Contains autoreconf for generating configure \
45 from configure.ac.
5f053ea3
JF
46asciidoc (>= 8.0) Generates HTML and (DocBook) XML from text.
47xmlto Generates manpages and chunked HTML from XML.
48DocBook XSL (>= 1.72.0) Used by xmlto for building manpages.
49DocBook (DSSL/Jade) tools Generates PDF from XML. \
50 Also known as docbook-utils.
f4657f00 51-------------------------------------------------------------------------------