mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 18:14:36 +08:00
33 lines
703 B
Bash
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
|
|
}
|