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