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