blob: cf324be2be87e7413f72905e0703fbaa3762a3d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $Id: PKGBUILD 246019 2015-09-13 21:42:42Z arojas $
# Maintainer (Arch): Felix Yan <felixonmars@archlinux.org>
# Contributor (Arch): Andrea Scarpino <andrea@archlinux.org>
# Contributor (Arch): Pierre Schmitz <pierre@archlinux.de>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=kdepim4-runtime
pkgver=4.14.10
_kdeappver=15.04.3
pkgrel=5.nonprism1
pkgdesc='Extends the functionality of kdepim4, without libkgapi4 support'
arch=('i686' 'x86_64')
url='https://projects.kde.org/projects/kde/kdepim-runtime'
license=('GPL' 'LGPL' 'FDL')
depends=('kdebase-runtime' 'libkolab4' 'libaccounts-qt4' 'libsignon-qt4' 'akonadi-qt4')
makedepends=('cmake' 'automoc4' 'boost')
conflicts=('kdepim-runtime' 'kdepim-runtime-coherence' 'kdepim-runtime-nonprism')
replaces=('kdepim-runtime<15' 'kdepim-runtime-coherence' 'kdepim-runtime-nonprism')
install="${pkgname}.install"
source=("http://download.kde.org/stable/applications/${_kdeappver}/src/kdepim-runtime-${pkgver}.tar.xz" kdepim4-runtime-bug338658.patch)
sha1sums=('f5b1e44f1d10d29bad308b3fd90a48b34da7493c'
'72527dc3422989bdfb59f396761e15caffaeac73')
prepare() {
mkdir -p build
# Fix https://bugs.kde.org/show_bug.cgi?id=338658
cd kdepim-runtime-$pkgver
patch -p1 -i ../kdepim4-runtime-bug338658.patch
}
build() {
cd build
cmake ../kdepim-runtime-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}
|