Projects/Digikam/Compilation on Kubuntu 15.04: Difference between revisions

From KDE TechBase
(Created page with "==Intro== Disclaimer. This operation was performed on 2nd July 2015, on a fresh install of Kubuntu 15.04 in a virtualbox machine. == Preparation == Before proceeding with c...")
 
Line 2: Line 2:


Disclaimer. This operation was performed on 2nd July 2015, on a fresh install of Kubuntu 15.04 in a virtualbox machine.
Disclaimer. This operation was performed on 2nd July 2015, on a fresh install of Kubuntu 15.04 in a virtualbox machine.
== Preparation ==
Before proceeding with compiling from sources we need to install some packages:
<source lang="bash">
$ sudo apt-get install git cmake g++
</source>
Git is necessary for cloning the digikam repository
<source lang="bash">
$ git clone git://anongit.kde.org/digikam-software-compilation.git
$ cd digikam-software-compilation
$ ./download-repos
</source>
At this point you must have all digikam sources.
Since Kubuntu 15.04 does not have any Qt4 packages necessary to compile digikam 4.12, we need to install them.
<source lang="bash">
$ sudo apt-get install qt4-default qt4-qmake
</source>

Revision as of 09:00, 2 July 2015

Intro

Disclaimer. This operation was performed on 2nd July 2015, on a fresh install of Kubuntu 15.04 in a virtualbox machine.