initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

29
kdoctools/PKGBUILD Normal file
View File

@@ -0,0 +1,29 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=kdoctools
pkgver=5.78.0
pkgrel=1
pkgdesc='Documentation generation from docbook'
arch=(i686 x86_64)
url='https://community.kde.org/Frameworks'
license=(LGPL-3)
depends=(docbook-xsl karchive ki18n)
makedepends=(doxygen extra-cmake-modules gettext-tiny graphviz perl-uri qt-tools)
groups=(kf5)
source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
sha512sums=('76b158099ac6c06c10245ba46a1f6431604ac3768f18fc52c7ce5016ff396a681ebc2466212cdc30da9342dc03beac7777cb27ea29484cc52183d1596ebb1fce'
'SKIP')
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
build() {
cmake -B build -S $pkgname-$pkgver \
-DBUILD_TESTING=OFF \
-DBUILD_QCH=ON
make -C build
}
package() {
make DESTDIR="$pkgdir" -C build install
install -Dm644 $pkgname-$pkgver/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt -t $pkgdir/usr/share/licenses/$pkgname
}