desktop/akonadi/PKGBUILD

54 lines
1.8 KiB
Bash
Raw Normal View History

# Include global configuration
2011-01-21 04:47:18 +08:00
pkgname=akonadi
pkgver=18.12.2
2018-06-18 00:14:15 +08:00
pkgrel=1
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
2012-11-17 16:09:50 +08:00
arch=('x86_64')
url='http://community.kde.org/KDE_PIM/Akonadi'
2011-01-21 04:47:18 +08:00
license=('LGPL')
2016-03-29 03:54:44 +08:00
depends=('shared-mime-info' 'qt5-base' 'libxslt' 'mariadb' 'kitemviews' 'kio'
2016-04-17 20:50:48 +08:00
'kdesignerplugin' 'kitemmodels' 'boost')
2017-12-29 06:32:19 +08:00
makedepends=(extra-cmake-modules postgresql qt5-tools boost python kdesignerplugin)
checkdepends=('xorg-server-xvfb')
optdepends=('postgresql: PostgreSQL backend'
'mariadb: MariaDB backend')
2016-03-29 03:54:44 +08:00
conflicts=('akonadi-client')
provides=('akonadi-client' 'akonadi-qt4')
replaces=('akonadi-client' 'akonadi-qt4')
2018-08-14 04:34:43 +08:00
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
sha256sums=('fca6bcdc962ceebe1d7e95650a0b67afd698104f654ff34a15494b7c526e1b9c'
2018-06-18 02:07:39 +08:00
'SKIP')
2018-06-18 00:14:15 +08:00
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>
2011-01-21 04:47:18 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
2018-06-18 00:14:15 +08:00
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DKDE_INSTALL_LIBDIR=lib \
-DKDE_INSTALL_SYSCONFDIR=/etc \
-DKDE_INSTALL_LIBEXECDIR=lib \
-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d \
-DBUILD_TESTING=OFF \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@"
make
2011-01-21 04:47:18 +08:00
}
check() {
# 17 akonadi-dbconfigtest failed as we changed the default backend
# 24~30 failed due to qt cannot find the sqldriver which is not installed yet
cd build
xvfb-run -a dbus-launch --exit-with-session make test || warning "Tests failed"
2011-01-21 04:47:18 +08:00
}
package() {
cd build
make DESTDIR=${pkgdir} install
}