Include INSTALL in documentation
[ganeti-local] / doc / devnotes.rst
1 Developer notes
2 ===============
3
4 Build dependencies
5 ------------------
6
7 Most dependencies from :doc:`install-quick`, plus:
8
9 - `GNU make <http://www.gnu.org/software/make/>`_
10 - `GNU tar <http://www.gnu.org/software/tar/>`_
11 - `Gzip <http://www.gnu.org/software/gzip/>`_
12 - `Docbook tools <http://sources.redhat.com/docbook-tools/>`_
13   (docbook2html and docbook2man)
14 - `python-sphinx <http://sphinx.pocoo.org/>`_
15   (tested with version 0.6.1)
16 - `graphviz <http://www.graphviz.org/>`_
17
18
19 Configuring for development
20 ---------------------------
21
22 .. highlight:: sh
23
24 Run the following command (only use ``PYTHON=...`` if you need to use a
25 different python version)::
26
27   ./autogen.sh && \
28   ./configure PYTHON=python2.4 \
29     --prefix=/usr/local --sysconfdir=/etc --localstatedir=/var
30
31 .. vim: set textwidth=72 :