2011-01-21 04:47:18 +08:00
|
|
|
#
|
|
|
|
# KDE SC Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2012-04-27 08:56:34 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
# maintainer Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
2011-01-21 04:47:18 +08:00
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=akonadi
|
2012-04-27 08:56:34 +08:00
|
|
|
pkgver=1.7.2
|
2012-05-26 21:34:40 +08:00
|
|
|
pkgrel=2
|
2011-01-21 04:47:18 +08:00
|
|
|
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://www.akonadi-project.org'
|
|
|
|
license=('LGPL')
|
2012-05-31 02:13:08 +08:00
|
|
|
depends=('shared-mime-info' 'boost-libs' 'mysql>=5.5.14' 'soprano>=2.7.56')
|
2012-02-06 04:46:15 +08:00
|
|
|
makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'postgresql')
|
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")
|
2012-04-27 08:56:34 +08:00
|
|
|
md5sums=('c73bb835057a3ee07d37a4f7daaf7ecf')
|
2011-01-21 04:47:18 +08:00
|
|
|
|
2011-08-15 07:47:28 +08:00
|
|
|
build() {
|
2012-02-06 04:46:15 +08:00
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
|
|
|
|
cd ${srcdir}
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
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() {
|
2012-02-06 04:46:15 +08:00
|
|
|
cd ${srcdir}/build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2011-01-21 04:47:18 +08:00
|
|
|
}
|