]> Cypherpunks.ru repositories - nncp.git/blob - doc/platforms.texi
Replace YAML with Hjson
[nncp.git] / doc / platforms.texi
1 @node Platform-specific
2 @section Platform-specific instructions
3
4 @node General
5 @subsection General installation instructions
6
7 Look @ref{Integrity, here} for finding public keys for tarball authentication.
8
9 @verbatim
10 $ wget http://www.nncpgo.org/download/nncp-5.0.0.tar.xz
11 $ wget http://www.nncpgo.org/download/nncp-5.0.0.tar.xz.sig
12 $ gpg --verify nncp-5.0.0.tar.xz.sig nncp-5.0.0.tar.xz
13 $ xz -d --stdout nncp-5.0.0.tar.xz | tar xf nncp-5.0.0.tar
14 $ make -C nncp-5.0.0 all
15 @end verbatim
16
17 There is @command{install} target respecting @env{DESTDIR}. It will
18 install binaries and info-documentation.
19
20 @node Ubuntu
21 @subsection Ubuntu installation instructions
22
23 Look @ref{Integrity, here} for finding public keys for tarball authentication.
24
25 @table @asis
26 @item Ubuntu 16.04
27
28 @verbatim
29 # apt install golang
30 @end verbatim
31
32 follow @ref{General, general} installation instructions
33
34 @verbatim
35 # make -C nncp-5.0.0 install PREFIX=/usr
36 @end verbatim
37
38 @item Ubuntu 14.04
39
40 @verbatim
41 # apt-get install golang-1.6
42 $ wget http://www.nncpgo.org/download/nncp-3.1.tar.xz
43 $ wget http://www.nncpgo.org/download/nncp-3.1.tar.xz.sig
44 $ gpg --verify nncp-3.1.tar.xz.sig nncp-3.1.tar.xz
45 $ tar xf nncp-3.1.tar.xz
46 $ PATH=/usr/lib/go-1.6/bin:$PATH make -C nncp-3.1 all
47 # make -C nncp-3.1 install PREFIX=/usr
48 @end verbatim
49
50 @end table