mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:34:36 +08:00
30 lines
654 B
Bash
30 lines
654 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}-${PSubVersion}.tar.xz")
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
make
|
|
}
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|