# $Id: PKGBUILD 290221 2017-03-09 16:12:45Z arojas $ # Maintainer (Arch): Felix Yan # Contributor (Arch): Andrea Scarpino # Contributor (Arch): Pierre Schmitz # Maintainer: André Silva pkgname=kdepim-runtime pkgver=16.12.3 pkgrel=1.parabola2.nonprism1 pkgdesc='Extends the functionality of kdepim, without libkgapi support (built without nonfree qt5-webengine)' arch=('i686' 'x86_64' 'armv7h') url='https://community.kde.org/KDE_PIM' license=('GPL' 'LGPL' 'FDL') depends=(libkolab akonadi-calendar knotifyconfig kross kalarmcal kmbox kimap hicolor-icon-theme) makedepends=(extra-cmake-modules kdoctools boost python kdesignerplugin) conflicts=(kio-pim) source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig} 'libre.patch') sha256sums=('e1ad03f80737bc4afaa101f108430b011ad2e2c1349e477a66ce59bc901fac48' 'SKIP' 'b98d522c5335692a724b76491e14aedb343301227ff59560381eabf871e6b36f') validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid prepare() { mkdir -p build cd $pkgname-$pkgver patch -p1 -i ../libre.patch } build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DBUILD_TESTING=OFF \ -DCMAKE_INSTALL_PREFIX=/usr \ -DKDE_INSTALL_LIBDIR=lib make } package() { cd build make DESTDIR="$pkgdir" install }