mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 03:44:37 +08:00
33 lines
663 B
Bash
33 lines
663 B
Bash
|
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
|
||
|
}
|