You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB
Bash

10 years ago
# Maintainer: Felix Yan <felixonmars@archlinux.org>
7 years ago
# Maintainer: Antonio Rojas <arojas@archlinux.org>
10 years ago
# Contributor: Andrea Scarpino <andrea@archlinux.org>
10 years ago
pkgname=kwin
7 years ago
pkgver=5.11.5
pkgrel=1
7 years ago
pkgdesc='An easy to use, but flexible, composited Window Manager'
arch=(x86_64)
url='https://www.kde.org/workspaces/plasmadesktop/'
7 years ago
license=(LGPL)
7 years ago
depends=(kscreenlocker xcb-util-cursor plasma-framework kcmutils breeze kinit)
7 years ago
makedepends=(extra-cmake-modules qt5-tools kdoctools python)
8 years ago
optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
7 years ago
groups=(plasma)
source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
7 years ago
sha256sums=('9fb0db84fd13568a0dcae7d1fdd3e72e5bbb80120d374941043d4474ea167f19'
7 years ago
'SKIP')
8 years ago
validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell
8 years ago
'348C8651206633FD983A8FC4DEACEA00075E1D76' # KDE Neon
7 years ago
'D07BD8662C56CB291B316EB2F5675605C74E02CF' # David Edmundson
'1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com>
10 years ago
prepare() {
9 years ago
mkdir -p build
10 years ago
}
build() {
cd build
8 years ago
cmake ../$pkgname-$pkgver \
10 years ago
-DCMAKE_BUILD_TYPE=Release \
10 years ago
-DCMAKE_INSTALL_PREFIX=/usr \
7 years ago
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_LIBEXECDIR=lib \
10 years ago
-DBUILD_TESTING=OFF
10 years ago
make
}
package() {
cd build
8 years ago
make DESTDIR="$pkgdir" install
10 years ago
}