desktop/akonadi/PKGBUILD

45 lines
1.2 KiB
Bash
Raw Normal View History

# Include global configuration
source ../kdeapps.conf
2011-01-21 04:47:18 +08:00
pkgname=akonadi
pkgver=${_kdever}
2016-06-12 01:58:27 +08:00
pkgrel=2
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')
makedepends=('extra-cmake-modules' 'postgresql')
checkdepends=('xorg-server-xvfb')
optdepends=('postgresql: PostgreSQL backend'
'mariadb: MariaDB backend')
install="${pkgname}.install"
2016-03-29 03:54:44 +08:00
conflicts=('akonadi-client')
provides=('akonadi-client' 'akonadi-qt4')
replaces=('akonadi-client' 'akonadi-qt4')
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2011-01-21 04:47:18 +08:00
prepare() {
mkdir -p build
}
build() {
cd build
2015-10-21 22:55:38 +08:00
cmake_kf5 ../${pkgname}-${pkgver}
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
}