2014-01-13 00:22:06 +08:00
|
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
|
|
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
|
2011-01-21 04:47:18 +08:00
|
|
|
|
|
|
|
pkgname=akonadi
|
2014-04-14 20:10:31 +08:00
|
|
|
pkgver=1.12.1
|
2014-06-08 22:51:28 +08:00
|
|
|
pkgrel=2
|
2013-12-22 20:17:15 +08:00
|
|
|
pkgdesc="PIM layer, which provides an asynchronous API to access all kinds of PIM data"
|
2012-11-17 16:09:50 +08:00
|
|
|
arch=('x86_64')
|
2011-01-21 04:47:18 +08:00
|
|
|
url='http://www.akonadi-project.org'
|
|
|
|
license=('LGPL')
|
2013-12-22 20:17:15 +08:00
|
|
|
depends=('shared-mime-info'
|
|
|
|
'boost-libs'
|
|
|
|
'akonadi-backend'
|
|
|
|
'soprano>=2.7.56')
|
|
|
|
makedepends=('pkg-config'
|
|
|
|
'cmake'
|
|
|
|
'automoc4'
|
|
|
|
'boost'
|
|
|
|
'postgresql')
|
2014-04-14 20:10:31 +08:00
|
|
|
options=('debug')
|
2011-01-21 04:47:18 +08:00
|
|
|
install=$pkgname.install
|
2012-03-30 09:46:51 +08:00
|
|
|
source=("http://download.kde.org/stable/akonadi/src/${pkgname}-${pkgver}.tar.bz2")
|
2014-04-14 20:10:31 +08:00
|
|
|
sha256sums=('a073228fda8bdbcf836af32d4b4c44dcbe58a3eac6da4e5a286b42ace9d83145')
|
2011-01-21 04:47:18 +08:00
|
|
|
|
2013-12-22 20:17:15 +08:00
|
|
|
prepare() {
|
|
|
|
mkdir "${srcdir}/build"
|
|
|
|
}
|
|
|
|
|
2011-08-15 07:47:28 +08:00
|
|
|
build() {
|
2013-12-22 20:17:15 +08:00
|
|
|
cd "${srcdir}/build"
|
2013-12-18 02:36:04 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
|
|
|
|
make
|
2011-01-21 04:47:18 +08:00
|
|
|
}
|
|
|
|
|
2011-08-15 07:47:28 +08:00
|
|
|
package() {
|
2013-12-18 02:36:04 +08:00
|
|
|
cd ${srcdir}/build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2011-01-21 04:47:18 +08:00
|
|
|
}
|