core/plasma-sdk/PKGBUILD

33 lines
683 B
Bash
Raw Normal View History

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')
2018-03-10 04:58:01 +08:00
depends=(plasma-framework)
makedepends=(extra-cmake-modules python3 kdoctools ktexteditor)
optdepends=('kirigami: for look and feel explorer')
groups=('plasma')
options=("debug")
2016-10-01 03:01:02 +08:00
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
}