]> Cypherpunks.ru repositories - nncp.git/blob - doc/building.texi
Prepare for release
[nncp.git] / doc / building.texi
1 @node Build-instructions
2 @section Build instructions
3
4 Make sure that Go is installed. For example to install it from packages:
5
6 @table @asis
7 @item FreeBSD
8     @verb{|pkg install go|}
9 @item Debian, Ubuntu
10     @verb{|apt install golang|}
11 @end table
12
13 @verbatim
14 $ [fetch|wget] http://www.nncpgo.org/download/nncp-5.1.2.tar.xz
15 $ [fetch|wget] http://www.nncpgo.org/download/nncp-5.1.2.tar.xz.sig
16 $ gpg --verify nncp-5.1.2.tar.xz.sig nncp-5.1.2.tar.xz
17 $ xz --decompress --stdout nncp-5.1.2.tar.xz | tar xf -
18 $ make -C nncp-5.1.2 all
19 @end verbatim
20
21 There is @command{install} make-target respecting @env{DESTDIR}. It will
22 install binaries and info-documentation:
23
24 @verbatim
25 # make -C nncp-5.1.2 install PREFIX=/usr/local
26 @end verbatim