# $Id: PKGBUILD 210205 2014-04-11 16:54:08Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Pierre Schmitz # Maintainer (Parabola): André Silva _pkgname=kdepim-runtime pkgname=kdepim-runtime-nonprism pkgver=4.13.0 pkgrel=1 pkgdesc='Extends the functionality of kdepim, without libkgapi and libkfbapi support' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kde/kdepim-runtime' license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'libkolab') makedepends=('cmake' 'automoc4' 'boost') install="${_pkgname}.install" replaces=('kdepim-runtime' 'kdepim-runtime-coherence') conflicts=(kdepim-runtime) provides=(kdepim-runtime=$pkgver) source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz") sha1sums=('01e5d0d205128e45a1ecf839cc892b65479278dd') prepare() { mkdir build } build() { cd build cmake ../${_pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd build make DESTDIR="${pkgdir}" install }