Shadeslayer (Talk | contribs) m |
Shadeslayer (Talk | contribs) |
||
| Line 1: | Line 1: | ||
| − | Here's a guide to compiling rekonq from the Git repository | + | = Introduction = |
| + | |||
| + | Here's a guide to compiling rekonq from the Git repository. | ||
First of all we need to install the devel packages,run the following in a terminal | First of all we need to install the devel packages,run the following in a terminal | ||
| Line 7: | Line 9: | ||
</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> |
| − | + | <br> | |
== Fetching the code == | == Fetching the code == | ||
Contents |
Here's a guide to compiling rekonq from the Git repository.
First of all we need to install the devel packages,run the following in a terminal
sudo apt-get install build-essential kdelibs4-devel git-core build-essential
sudo zypper in libkde4-devel git-core gcc gcc-c++ make cmake
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 here.The code can also be downloaded here.
In a terminal run
git clone git://gitorious.org/rekonq/mainline.git
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