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