2015-02-23 07:23:41 +08:00
|
|
|
#contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/khelpcenter
|
2014-06-22 21:38:38 +08:00
|
|
|
source ../plasma.conf
|
|
|
|
|
|
|
|
pkgname=khelpcenter
|
|
|
|
pkgver=${PVersion}
|
2016-01-18 10:55:54 +08:00
|
|
|
pkgrel=2
|
2014-12-01 14:48:37 +08:00
|
|
|
pkgdesc="Application to show KDE Applications' documentation"
|
2014-10-23 03:29:25 +08:00
|
|
|
arch=('x86_64')
|
2014-12-01 14:48:37 +08:00
|
|
|
url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
|
2014-06-22 21:38:38 +08:00
|
|
|
license=('LGPL')
|
2016-01-18 10:51:11 +08:00
|
|
|
depends=('khtml' 'kdelibs4support' 'kcmutils')
|
2014-12-01 14:48:37 +08:00
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools')
|
2014-06-22 21:38:38 +08:00
|
|
|
groups=('plasma')
|
|
|
|
options=("debug")
|
2015-02-26 07:11:27 +08:00
|
|
|
conflicts=('khelpcenter4')
|
2014-10-23 03:29:25 +08:00
|
|
|
source=("${PServer}/${pkgver}/${pkgname}-${PSubVersion}.tar.xz")
|
2014-06-22 21:38:38 +08:00
|
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2015-02-24 05:41:32 +08:00
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
2014-06-22 21:38:38 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|