[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[www] branch master updated: fixed missing clone of gnunet-gtk repositor
From: |
gnunet |
Subject: |
[www] branch master updated: fixed missing clone of gnunet-gtk repository |
Date: |
Sun, 26 Apr 2020 10:16:39 +0200 |
This is an automated email from the git hooks/post-receive script.
rexxnor pushed a commit to branch master
in repository www.
The following commit(s) were added to refs/heads/master by this push:
new d868619 fixed missing clone of gnunet-gtk repository
d868619 is described below
commit d86861989be06529e4836de61fd1169c649f02b7
Author: rexxnor <address@hidden>
AuthorDate: Sun Apr 26 10:07:59 2020 +0200
fixed missing clone of gnunet-gtk repository
---
template/install-on-archpi.html.j2 | 35 +++++++++++++++++++----------------
1 file changed, 19 insertions(+), 16 deletions(-)
diff --git a/template/install-on-archpi.html.j2
b/template/install-on-archpi.html.j2
index 00c8dc5..28f004f 100644
--- a/template/install-on-archpi.html.j2
+++ b/template/install-on-archpi.html.j2
@@ -16,8 +16,8 @@
<h2>{{ _("Requirements for Raspberry Pi 3") }}</h2>
<p>First you need the hardware. This tutorial works with a Raspberry Pi 3 or
- any Arch Linux system. The other Pi versions I haven't tested, but they
should
- probably work, too. To install Arch Linux on the Pi3, follow the instructions
+ any Arch Linux system. The other Pi versions have not been tested, but they
+ should work, too. To install Arch Linux on the Pi3, follow the instructions
from <a
href="https://archlinuxarm.org/platforms/armv8/broadcom/raspberry-pi-3">archlinuxarm.org</a>.</p>
@@ -25,7 +25,7 @@
install the tools for building new software.</p>
<p><code>
- > sudo pacman -S base-devel
+ $ sudo pacman -S base-devel
</code></p>
<p>Now we can continue to install the following Arch Linux dependencies to
@@ -43,18 +43,18 @@
in the next step:<p>
<p><code>
- > git clone https://gnunet.org/git/gnunet.git<br>
+ $ git clone https://gnunet.org/git/gnunet.git<br>
</code></p>
<p>Now it's time to compile and install GNUnet.</p>
<p><code>
- > cd gnunet<br>
- > export GNUNET_PREFIX=/usr # for example, other locations possible<br>
- > ./bootstrap # Run this to generate the configure files.<br>
- > ./configure --prefix=$GNUNET_PREFIX --disable-documentation # Use --help
to see the various flags available to you.<br>
- > make -j$(nproc || echo -n 1)<br>
- > sudo make install<br>
+ $ cd gnunet<br>
+ $ export GNUNET_PREFIX=/usr # for example, other locations possible<br>
+ $ ./bootstrap # Run this to generate the configure files.<br>
+ $ ./configure --prefix=$GNUNET_PREFIX # Use --help to see the various flags
available to you.<br>
+ $ make -j$(nproc || echo -n 1)<br>
+ $ sudo make install<br>
</code></p>
<p>Congrats! GNUnet is now installed!</p>
@@ -66,14 +66,17 @@
<p><code>
$ pacman -Su gtk3 glade
</code></p>
+ <p><code>
+ $ git clone https://gnunet.org/git/gnunet-gtk.git<br>
+ </code></p>
<code>
$ cd ../gnunet-gtk<br>
$ ./bootstrap<br>
- $ export GNUNET_PREFIX=/usr # for example, other locations possible
+ $ export GNUNET_PREFIX=/usr # for example, other locations possible<br>
$ export CFLAGS="-g -Wall -O0"<br>
$ ./configure --prefix=$GNUNET_PREFIX --with-gnunet=$GNUNET_PREFIX<br>
$ make -j$(nproc || echo -n 1)<br>
- $ sudo make install
+ $ sudo make install<br>
</code>
<h2>{{ _("Run") }}</h2>
@@ -82,20 +85,20 @@
~/.config/gnunet.conf. We can start with an empty file for now:</p>
<p><code>
- > touch ~/.config/gnunet.conf
+ $ touch ~/.config/gnunet.conf
</code></p>
<br />
<p>Now we can start it with the commandline tool gnunet-arm (Automatic
Restart
Manager).</p>
<p><code>
- > gnunet-arm -s
+ $ gnunet-arm -s
</code></p>
<p>It starts the default GNUnet services. We can list them with the -I
option:</p>
<p><code>
- > gnunet-arm -I<br>
+ $ gnunet-arm -I<br>
Running services:<br>
ats (gnunet-service-ats)<br>
revocation (gnunet-service-revocation)<br>
@@ -125,7 +128,7 @@
<p>For stopping GNUnet again we can use the -e option.</p>
<p><code>
- > gnunet-arm -e
+ $ gnunet-arm -e
</code></p>
<h2>{{ _("Make sure, it works!") }}</h2>
--
To stop receiving notification emails like this one, please contact
address@hidden.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [www] branch master updated: fixed missing clone of gnunet-gtk repository,
gnunet <=