Akonadi is an extensible cross-desktop storage service for PIM data and metadata providing concurrent read, write, and query access. It provides unique desktop-wide object identification and retrieval.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://download.kde.org/stable/akonadi/src/akonadi-1.10.2.tar.bz2
Download (FTP): ftp://ftp.kde.org/pub/kde/stable/akonadi/src/akonadi-1.10.2.tar.bz2
Download MD5 sum: 35eb8f76588b1d111f75bc46e3ac784b
Download size: 224 KB
Estimated disk space required: 41 MB
Estimated build time: 1.9 SBU
shared-mime-info-1.1, Boost-1.54.0, Soprano-2.9.3, and one of: SQLite-3.8.0.2, MySQL-5.6.13, or PostgreSQL-9.3.0
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/akonadi
Install Akonadi by running the following commands:
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=$KDE_PREFIX \ -DCMAKE_PREFIX_PATH=$QTDIR \ -DCMAKE_BUILD_TYPE=Release \ -DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE \ .. && make
To test the results,issue make test.
Now, as the root
user:
make install
-DCMAKE_PREFIX_PATH=$QTDIR
: This switch
is used to help cmake
find automoc4.
-DCMAKE_BUILD_TYPE=Release
: This switch
is used to apply a higher level of compiler optimizations.
-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
:
This switch ensures that Akonadi
SQLite extension is installed into the Qt plugins directory.
Last updated on 2013-08-26 10:26:25 -0700