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}
|
2015-03-25 22:22:21 +08:00
|
|
|
pkgrel=4
|
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')
|
2014-10-23 03:29:25 +08:00
|
|
|
depends=('qt5-multimedia' 'plasma-framework' 'knewstuff' 'libxcursor' 'kinit'
|
2015-03-24 03:14:55 +08:00
|
|
|
'hicolor-icon-theme' 'libepoxy' 'kwayland' 'kdecoration' 'libinput' 'python3')
|
2014-10-23 03:29:25 +08:00
|
|
|
makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
|
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")
|
2015-02-25 06:55:55 +08:00
|
|
|
source=("${PServer}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
|
|
|
sha256sums=( $(getSum ${pkgname}) )
|
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
|
|
|
|
}
|