Rekonq/Compiling rekonq: Difference between revisions

From KDE Community Wiki
mNo edit summary
m (11 revisions imported)
 
(7 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Here's a guide to compiling rekonq from the Git repository
= Introduction =


First of all we need to install the devel packages,run the following in a terminal
Here's a guide to compiling rekonq from the Git repository.
 
NOTE : rekonq 0.5 and above requires KDE 4.4.0 and above for compiling correctly.
 
First of all we need to install the devel packages. Run the following command in a terminal:


== On Ubuntu  ==
== On Ubuntu  ==
<pre>sudo apt-get install build-essential kdelibs4-devel git-core build-essential
<pre>sudo apt-get install build-essential kdelibs5-dev git-core
</pre>
</pre>
== On openSUSE  ==
== On openSUSE  ==
<pre>sudo zypper in libkde4-devel git-core gcc gcc-c++ make cmake
<pre>sudo zypper in libkde4-devel git-core gcc gcc-c++ make cmake
</pre>
</pre>
== On Fedora ==
as superuser,


<pre>yum install kdelibs-devel git gcc-c++ make cmake
</pre>


== Fetching the code  ==
== Fetching the code  ==


Now we need to checkout the latest code,we will be using git,as the most recent code is available on git.The gitorious page for rekonq can be found [http://gitorious.org/rekonq here].The code can also be downloaded [http://sourceforge.net/projects/rekonq/files/ here].
We will be using git, as the most recent code is available on the git repository. The kde project page for rekonq can be found [http://projects.kde.org/projects/extragear/network/rekonq here]. Stable releases can also be downloaded [http://sourceforge.net/projects/rekonq/files/ here] in form of tarballs.
 
Now we need to checkout the latest code. To do so, in a terminal run:
<pre>git clone git://anongit.kde.org/rekonq</pre>


In a terminal run
<pre>git clone git://gitorious.org/rekonq/mainline.git</pre>
== Compiling the code  ==
== Compiling the code  ==


Ok so now we have the code and the devel packages,all we need to do is compile it with the following commands in a terminal
Ok so now we have the code and the devel packages, all we need to do is compile it with the following commands in a terminal:
<pre>cd directory_where_rekonq_source_code_is
<pre>cd directory_where_rekonq_source_code_is
mkdir build
mkdir build

Latest revision as of 18:34, 18 March 2016

Introduction

Here's a guide to compiling rekonq from the Git repository.

NOTE : rekonq 0.5 and above requires KDE 4.4.0 and above for compiling correctly.

First of all we need to install the devel packages. Run the following command in a terminal:

On Ubuntu

sudo apt-get install build-essential kdelibs5-dev git-core

On openSUSE

sudo zypper in libkde4-devel git-core gcc gcc-c++ make cmake

On Fedora

as superuser,

yum install kdelibs-devel git gcc-c++ make cmake

Fetching the code

We will be using git, as the most recent code is available on the git repository. The kde project page for rekonq can be found here. Stable releases can also be downloaded here in form of tarballs.

Now we need to checkout the latest code. To do so, in a terminal run:

git clone git://anongit.kde.org/rekonq

Compiling the code

Ok so now we have the code and the devel packages, all we need to do is compile it with the following commands in a terminal:

cd directory_where_rekonq_source_code_is
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
sudo make install