2015-02-23 07:23:41 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/kwin
|
2014-06-22 20:50:43 +08:00
|
|
|
source ../plasma.conf
|
|
|
|
|
|
|
|
pkgname=kwin
|
2015-02-25 06:55:55 +08:00
|
|
|
pkgver=${PSubVersion}
|
2018-05-15 02:16:17 +08:00
|
|
|
pkgrel=2
|
2014-12-01 13:27:04 +08:00
|
|
|
pkgdesc='KDE Window manager'
|
2014-10-23 03:29:25 +08:00
|
|
|
arch=('x86_64')
|
2014-12-01 13:27:04 +08:00
|
|
|
url='https://projects.kde.org/projects/kde/workspace/kwin'
|
2014-06-22 20:50:43 +08:00
|
|
|
license=('LGPL')
|
2018-03-10 04:58:01 +08:00
|
|
|
depends=(kscreenlocker xcb-util-cursor plasma-framework kcmutils breeze kinit qt5-sensors)
|
|
|
|
makedepends=(extra-cmake-modules qt5-tools kdoctools python3)
|
|
|
|
optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
|
2014-06-22 20:50:43 +08:00
|
|
|
groups=('plasma')
|
2014-12-01 13:27:04 +08:00
|
|
|
install=${pkgname}.install
|
2014-06-22 20:50:43 +08:00
|
|
|
options=("debug")
|
2016-10-01 03:01:02 +08:00
|
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
|
|
sha256sums=( $(getSum ${pkgname})
|
|
|
|
'SKIP' )
|
2017-08-10 17:46:06 +08:00
|
|
|
validpgpkeys=(${Pvalidpgpkeys[@]})
|
2014-06-22 20:50:43 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2015-02-24 05:41:32 +08:00
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
2014-06-22 20:50:43 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|