summaryrefslogtreecommitdiff
path: root/libre/akonadi-contacts/PKGBUILD
blob: 9aa1ca9ef1ddd56314465bf47cf4ffa03927f5cb (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
45
# Maintainer: Andreas Grapentin <andreas@grapentin.org>
# Contributor: André Silva <emulatorman@riseup.net>
# Contributor: Márcio Silva <coadde@riseup.net>
# Maintainer (Arch): Antonio Rojas <arojas@archlinux.org>

pkgname=akonadi-contacts
pkgver=17.04.1
pkgrel=1.parabola1
pkgdesc="Libraries and daemons to implement Contact Management in Akonadi, without nonfree qt5-webengine support"
arch=(i686 x86_64 armv7h)
url="https://community.kde.org/KDE_PIM"
license=(LGPL)
depends=(akonadi grantlee kcontacts kmime prison opengl-driver)
makedepends=(extra-cmake-modules kdoctools python boost akonadi-mime kcalcore kdesignerplugin)
conflicts=(akonadi-contact)
replaces=(akonadi-contact)
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
        'libre.patch')
sha256sums=('5397d601a9a02c9935aea5864c5d62aac285193dd170fcc5882fa2c155896329'
            'SKIP'
            '5e70b6315ba0d83a997005d3e71004cae9a7025f4a5d7973330d8634879155e1')
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid <aacid@kde.org>

prepare() {
  mkdir -p build

  cd $srcdir/$pkgname-$pkgver
  rm -rv src/editor/addresseditor/webengine
  patch -p1 -i ../libre.patch
}

build() {
  cd build
  cmake ../$pkgname-$pkgver \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DKDE_INSTALL_LIBDIR=lib \
    -DBUILD_TESTING=OFF
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}