summaryrefslogtreecommitdiff
path: root/nonprism/kdepim-runtime-nonprism/PKGBUILD
blob: 04997be1bc88d9e9d345c5b90984ed1378c9c106 (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
# $Id: PKGBUILD 217061 2014-07-18 11:26:27Z svenstaro $
# Maintainer (Arch): Andrea Scarpino <andrea@archlinux.org>
# Contributor (Arch): Pierre Schmitz <pierre@archlinux.de>
# Maintainer: André Silva <emulatorman@parabola.nu>

_pkgname=kdepim-runtime
pkgname=kdepim-runtime-nonprism
pkgver=4.13.3
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=('97ebc82f7fc9e8972266740200820c218d36c5f6')

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
}