core/kxmlrpcclient/PKGBUILD
2018-02-06 22:15:45 +00:00

35 lines
641 B
Bash

source ../frameworks.conf
pkgname=kxmlrpcclient
pkgver=${KFVersion}
pkgrel=1
pkgdesc='Interaction with XMLRPC services'
arch=('x86_64')
url='https://projects.kde.org/projects/kde/pim/kxmlrpcclient'
license=('LGPL')
depends=('kio')
makedepends=("extra-cmake-modules>=${KFECMVersion}")
groups=('kf5')
options=("debug")
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz"{,.sig})
sha256sums=( $(getSum ${pkgname})
SKIP)
validpgpkeys=( ${KFvalidpgpkeys[@]} )
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}