blob: 7c7e4fb6298ca7dbe0d475e7bab8c9ffd0144063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com >
pkgname=kpeoplevcard
pkgver=0.1
pkgrel=1
pkgdesc='Expose VCard contacts to KPeople'
arch=(x86_64)
url='https://kde.org'
license=('LGPL-2.1-or-later')
depends=('kpeople5' 'kcontacts5')
makedepends=(extra-cmake-modules)
provides=("${pkgname}")
source=("https://download.kde.org/Attic/kpeoplevcard/${pkgver}/${pkgname}-${pkgver}.tar.xz")
md5sums=('7eb750d8729a2f681b1343467d8673d4')
build() {
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -B build -S "${pkgname}-${pkgver}"
cmake --build build --config Release
}
package() {
DESTDIR="${pkgdir}" cmake --install build --config Release
}
|