blob: ea0f0ed685264a738ef2e9594331537b4825d7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
_name=kdoctools
pkgname=${_name}5
pkgver=5.116.0
pkgrel=3
pkgdesc='Documentation generation from docbook'
arch=(x86_64)
url='https://community.kde.org/Frameworks'
license=(LGPL)
depends=(karchive5 docbook-xsl)
makedepends=(extra-cmake-modules perl-uri ki18n5)
conflicts=("$_name<5.111")
replaces=("$_name<5.111")
groups=(kf5)
source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$_name-$pkgver.tar.xz{,.sig})
sha256sums=('36a0a60e422907b2baead8b82cec56008240b7a950678294bb2e1df65e1a6bb3'
'SKIP')
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
build() {
cmake -B build -S $_name-$pkgver \
-DBUILD_TESTING=OFF \
-DDocBookXSL_DIR=/usr/share/xml/docbook/xsl-stylesheets-nons
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
|