added kactivitymanagerd and simplesystray

This commit is contained in:
AlmAck 2016-03-22 23:09:57 +00:00
parent 646f272dbc
commit 02ee0c3b23
3 changed files with 35 additions and 1 deletions

View File

@ -2,7 +2,7 @@ source ../plasma.conf
pkgname=kactivitymanagerd
pkgver=${PVersion}
pkgrel=2
pkgrel=3
pkgdesc="System service to manage user's activities and track the usage patterns"
arch=('x86_64')
url='https://projects.kde.org/kactivitymanagerd'

View File

@ -48,6 +48,8 @@ kde-gtk-config
kgamma5
kwallet-pam
user-manager
kactivitymanagerd
simplesystray
breeze-gtk
#plymouth
breeze-plymouth

32
simplesystray/PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
source ../plasma.conf
pkgname=simplesystray
pkgver=${PVersion}
pkgrel=1
pkgdesc="Experimental systemtray replacement"
arch=('x86_64')
url="https://projects.kde.org/projects/kde/workspace/simplesystray"
license=('LGPL')
depends=(krunner knotifyconfig kdelibs4support knewstuff plasma-workspace)
makedepends=(extra-cmake-modules kdoctools)
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
}