core/kactivitymanagerd/PKGBUILD

36 lines
688 B
Bash
Raw Normal View History

source ../plasma.conf
pkgname=kactivitymanagerd
pkgver=${PVersion}
pkgrel=3
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}-${PSubVersion}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
cd ${pkgname}-${pkgver}
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
# conflict with plasma for now
rm -r "$pkgdir/usr/share/locale"
}