diff options
Diffstat (limited to 'docs/installation.adoc')
-rw-r--r-- | docs/installation.adoc | 29 |
1 files changed, 6 insertions, 23 deletions
diff --git a/docs/installation.adoc b/docs/installation.adoc index 991fa85..6ca6856 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -54,7 +54,7 @@ Prerequisites: please ensure `git` is installed on the system [source,console] ---- # Clone the repository by version tag (or omit it to get the latest sources) -git clone https://github.com/rnpgp/rnp.git -b v0.17.0 +git clone https://github.com/rnpgp/rnp.git -b v0.17.1 Please ensure that you clone with submodules if you use a version higher then 0.16.2 git clone https://github.com/rnpgp/rnp.git --recurse-submodules --shallow-submodules @@ -63,8 +63,8 @@ git clone https://github.com/rnpgp/rnp.git --recurse-submodules --shallow-submod sudo apt install g++-8 cmake libbz2-dev zlib1g-dev libjson-c-dev build-essential python-minimal # Download, build and install Botan2 -wget -qO- https://botan.randombit.net/releases/Botan-2.18.2.tar.xz | tar xvJ -cd Botan-2.18.2 +wget -qO- https://botan.randombit.net/releases/Botan-2.19.4.tar.xz | tar xvJ +cd Botan-2.19.4 ./configure.py --prefix=/usr make sudo make install @@ -91,7 +91,7 @@ Prerequisite: please ensure `git` is installed on the system. [source,console] ---- # Clone the repository by version tag (or omit it to get the latest sources) -git clone https://github.com/rnpgp/rnp.git -b v0.17.0 +git clone https://github.com/rnpgp/rnp.git -b v0.17.1 Please ensure that you clone with submodules if you use a version higher then 0.16.2 git clone https://github.com/rnpgp/rnp.git --recurse-submodules --shallow-submodules @@ -116,28 +116,11 @@ sudo make install == On Gentoo Linux -RNP ebuilds are available from an overlay repository named `rnp`. - -=== Using eselect-repository (the current way) - -Prerequisite: ensure `eselect-repository` is installed on your system. - -[source,console] ----- -eselect repository enable rnp -emaint sync -r rnp -emerge -av app-crypt/rnp ----- - -=== Using layman (the old way) - -Prerequisite: ensure `layman` is installed on your system. +RNP is present in the official Gentoo repository under the name `dev-util/librnp`. [source,console] ---- -layman -a rnp -layman -s rnp -emerge -av app-crypt/rnp +emerge -av dev-util/librnp ---- == Compile from source |