mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:47:14 +08:00
32 lines
711 B
Bash
32 lines
711 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=kwayland-integration
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc='Provides integration plugins for various KDE frameworks for the wayland windowing system'
|
|
arch=(x86_64)
|
|
url='https://projects.kde.org/projects/kde/workspace/kwayland-integration'
|
|
license=(LGPL)
|
|
depends=(kwindowsystem kidletime kwayland)
|
|
makedepends=(extra-cmake-modules)
|
|
groups=('plasma')
|
|
options=("debug")
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
sha256sums=( $(getSum ${pkgname})
|
|
'SKIP' )
|
|
validpgpkeys=(${Pvalidpgpkeys})
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|