mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 12:14:36 +08:00
33 lines
704 B
Bash
33 lines
704 B
Bash
source ../plasma.conf
|
|
|
|
pkgname=plasma-sdk
|
|
pkgver=${PVersion}
|
|
pkgrel=2
|
|
pkgdesc='Applications useful for Plasma Development'
|
|
url="https://cgit.kde.org/plasma-sdk.git/"
|
|
arch=('x86_64')
|
|
depends=('plasma-framework')
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'python3' 'kirigami' 'ktexteditor')
|
|
optdepends=('kirigami: for look and feel explorer')
|
|
groups=('plasma')
|
|
options=("debug")
|
|
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
|
|
}
|