mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
34 lines
689 B
Bash
34 lines
689 B
Bash
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
source ../frameworks.conf
|
|
|
|
pkgname=kapidox
|
|
pkgver=$KFVersion
|
|
pkgrel=1
|
|
pkgdesc='Frameworks API Documentation Tools'
|
|
arch=('any')
|
|
url='https://projects.kde.org/projects/frameworks/kapidox'
|
|
license=('LGPL')
|
|
makedepends=('extra-cmake-modules' 'qt5-base' 'python2')
|
|
groups=('kf5')
|
|
options=("debug")
|
|
source=("$KFServer/${KFVersion}/${pkgname}-${pkgver}.tar.xz")
|
|
sha256sums=($(getSum ${pkgname}))
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../${pkgname}-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=${KFBuildType} \
|
|
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|