core/plasma-integration/PKGBUILD
2016-09-30 20:01:02 +01:00

33 lines
703 B
Bash

source ../plasma.conf
pkgname=plasma-integration
pkgver=${PVersion}
pkgrel=1
pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
arch=(x86_64)
url='https://www.kde.org/workspaces/plasmadesktop/'
license=(LGPL)
depends=(kio kwayland libxcursor ttf-noto ttf-oxygen breeze)
makedepends=("extra-cmake-modules>=${KFECMVersion}" python3)
options=("debug")
groups=('plasma')
source=("${PServer}/${pkgver}/${pkgname}-${PVersion}.tar.xz"{,.sig})
sha256sums=( $(getSum ${pkgname})
'SKIP' )
validpgpkeys=(${Pvalidpgpkeys})
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../$pkgname-$pkgver
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}