Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use <pre> instead of <code> #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,16 +102,22 @@ <h4>Try with BlankOn</h4>
<br>
<h4>From source</h4>
<p>Download the source code of Manokwari with git</p>
<code>git clone https://github.com/BlankOn/manokwari.git</code>
<pre>$ git clone https://github.com/BlankOn/manokwari.git</pre>
<br><br>
<p>Or directly from master tarball</p>
<a href="https://github.com/BlankOn/manokwari/zipball/master" class="btn">Tarball</a>
<br><br>
<p>Install some packages dependencies for compilation on BlankOn/Debian or Ubuntu (not tested on Ubuntu)</p>
<code>sudo apt-get install gnome-common libcairo2-dev libgee-dev libglib2.0-dev libgnome-menu-dev libgtk-3-dev libtool libunique-3.0-dev libvala-0.12-dev valac</code>
<pre>
$ sudo apt-get install gnome-common libcairo2-dev libgee-dev libglib2.0-dev \
libgnome-menu-dev libgtk-3-dev libtool libunique-3.0-dev libvala-0.12-dev valac</pre>
<br><br>
<p>Build and install source</p>
<code>cd manokwari</code><br><code>sh autogen.sh</code><br><code>make</code><br><code>sudo make install</code>
<pre>
$ cd manokwari
$ sh autogen.sh
$ make
$ sudo make install</pre>
<br>
<br>
<h4>Ubuntu</h4>
Expand Down