desktop/akonadi/PKGBUILD

43 lines
1.1 KiB
Bash
Raw Normal View History

# Include global configuration
source ../kdeapps.conf
2011-01-21 04:47:18 +08:00
pkgname=akonadi
pkgver=${_kdever}
pkgrel=4
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')
depends=('shared-mime-info' 'qt5-base' 'libxslt' 'mariadb')
makedepends=('extra-cmake-modules' 'postgresql')
checkdepends=('xorg-server-xvfb')
optdepends=('postgresql: PostgreSQL backend'
'mariadb: MariaDB backend')
install="${pkgname}.install"
2015-10-26 06:03:26 +08:00
replaces=('akonadi-qt4')
conflicts=('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
}