desktop/khelpcenter/PKGBUILD
2015-03-23 19:04:41 +00:00

33 lines
775 B
Bash

#contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/khelpcenter
source ../plasma.conf
pkgname=khelpcenter
pkgver=${PVersion}
pkgrel=2
pkgdesc="Application to show KDE Applications' documentation"
arch=('x86_64')
url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
license=('LGPL')
depends=('khtml' 'kdelibs4support' 'kcmutils' 'python3')
makedepends=('extra-cmake-modules' 'kdoctools')
groups=('plasma')
options=("debug")
conflicts=('khelpcenter4')
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
sha256sums=( $(getSum ${pkgname}) )
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}