mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 01:07:15 +08:00
35 lines
641 B
Bash
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
|
|
}
|
|
|