2016-05-14 05:13:16 +08:00
|
|
|
source ../plasma.conf
|
|
|
|
|
|
|
|
pkgname=plasma-integration
|
|
|
|
pkgver=${PVersion}
|
2016-06-23 05:38:41 +08:00
|
|
|
pkgrel=1
|
2016-05-14 05:13:16 +08:00
|
|
|
pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
|
|
|
|
arch=(x86_64)
|
|
|
|
url='https://www.kde.org/workspaces/plasmadesktop/'
|
|
|
|
license=(LGPL)
|
2016-06-23 05:38:41 +08:00
|
|
|
depends=(kio kwayland libxcursor ttf-noto ttf-oxygen breeze)
|
2016-05-14 05:13:16 +08:00
|
|
|
makedepends=("extra-cmake-modules>=${KFECMVersion}" python3)
|
|
|
|
options=("debug")
|
|
|
|
groups=('plasma')
|
2016-10-01 03:01:02 +08:00
|
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
|
|
|
|
sha256sums=( $(getSum ${pkgname})
|
|
|
|
'SKIP' )
|
|
|
|
validpgpkeys=(${Pvalidpgpkeys})
|
2016-05-14 05:13:16 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2016-06-15 08:47:43 +08:00
|
|
|
cmake_kf5 ../$pkgname-$pkgver
|
2016-05-14 05:13:16 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|