diff options
Diffstat (limited to 'doc/sphinx/frags/installing-taler-exchange.rst')
-rw-r--r-- | doc/sphinx/frags/installing-taler-exchange.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/sphinx/frags/installing-taler-exchange.rst b/doc/sphinx/frags/installing-taler-exchange.rst new file mode 100644 index 0000000..1b8e96b --- /dev/null +++ b/doc/sphinx/frags/installing-taler-exchange.rst | |||
@@ -0,0 +1,16 @@ | |||
1 | After installing GNUnet, unpack the GNU Taler exchange tarball, | ||
2 | change into the resulting directory, and proceed as follows: | ||
3 | |||
4 | .. code-block:: console | ||
5 | |||
6 | $ ./configure [--prefix=EXCHANGEPFX] \ | ||
7 | [--with-gnunet=GNUNETPFX] | ||
8 | $ # Each dependency can be fetched from non standard locations via | ||
9 | $ # the '--with-<LIBNAME>' option. See './configure --help'. | ||
10 | $ make | ||
11 | # make install | ||
12 | |||
13 | If you did not specify a prefix, the exchange will install to ``/usr/local``, | ||
14 | which requires you to run the last step as ``root``. You have to specify | ||
15 | ``--with-gnunet=/usr/local`` if you installed GNUnet to ``/usr/local`` in the | ||
16 | previous step. | ||