summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.co.uk>2018-03-27 16:03:41 +0100
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-20 20:03:30 +0900
commit0213102cb911d05cae2f06d5eb16ce9db3fd1607 (patch)
treef59d4b16c26712f950a014b952b7eb61240add66
parentaab0229b8ab76a45b4be5576681e42ff5cd298de (diff)
downloadbuildstream-0213102cb911d05cae2f06d5eb16ce9db3fd1607.tar.gz
HACKING.rst: Add a note about arpy being required for docs
-rw-r--r--HACKING.rst10
1 files changed, 8 insertions, 2 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 175c74f9f..17ca7a281 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -243,13 +243,19 @@ difficult (or impossible) to do so, so there is a little bit of setup
you need to take care of first.
Before you can build the BuildStream documentation yourself, you need
-to first install ``sphinx`` and ``sphinx-click``, using pip or some
-other mechanism::
+to first install ``sphinx`` along with some additional plugins and dependencies,
+using pip or some other mechanism::
+ # Install sphinx
pip3 install --user sphinx
+
+ # Install some sphinx extensions
pip3 install --user sphinx-click
pip3 install --user sphinx_rtd_theme
+ # Additional optional dependencies required
+ pip3 install --user arpy
+
Furthermore, the documentation build requires that BuildStream itself
be installed.