Date: Saturday, August 8, 2020 @ 09:46:45
Author: arojas
Revision: 393244
archrelease: copy trunk to testing-any
Added:
kapidox/repos/testing-any/
kapidox/repos/testing-any/PKGBUILD
(from rev 393243, kapidox/trunk/PKGBUILD)
----------+
PKGBUILD | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
Copied: kapidox/repos/testing-any/PKGBUILD (from rev 393243,
kapidox/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2020-08-08 09:46:45 UTC (rev 393244)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kapidox
+pkgver=5.73.0
+pkgrel=1
+pkgdesc='Frameworks API Documentation Tools'
+arch=(any)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(python-jinja python-yaml)
+makedepends=(cmake qt5-base)
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('b49ff6673906817ed95a3de56535594de02a9f95bcb2726abe52d0c0e0161be5'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}