File: INSTALL

package info (click to toggle)
akonadi 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,460 kB
  • ctags: 1,273
  • sloc: cpp: 9,843; xml: 534; php: 521; sh: 113; perl: 109; sql: 83; makefile: 5
file content (26 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Akonadi's build system uses cmake.

So to compile Akonadi first create a build dir

  mkdir build
  cd build

then run cmake:

  cmake ..

(a typical cmake option that is often used is: -DCMAKE_INSTALL_PREFIX=<prefix>)

cmake then presents a configuration summary. At this point you may
want to install missing dependancies (if you do, remove the CMakeCache.txt)
and run cmake again.

Finally build Akonadi:

  make

And install it (in most cases root privileges are required):

  make install

That's all :)