mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 15:04:37 +08:00
34 lines
675 B
Bash
34 lines
675 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=kactivitymanagerd
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc="System service to manage user's activities and track the usage patterns"
|
|
arch=('x86_64')
|
|
url='https://projects.kde.org/kactivitymanagerd'
|
|
license=('LGPL')
|
|
depends=(kio)
|
|
makedepends=(extra-cmake-modules boost)
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'SKIP' )
|
|
validpgpkeys=(${Pvalidpgpkeys})
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|