Date: Sunday, October 9, 2022 @ 20:33:05
Author: arojas
Revision: 457417
archrelease: copy trunk to testing-any
Added:
kapidox/repos/testing-any/
kapidox/repos/testing-any/PKGBUILD
(from rev 457416, kapidox/trunk/PKGBUILD)
kapidox/repos/testing-any/keys/
----------+
PKGBUILD | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
Copied: kapidox/repos/testing-any/PKGBUILD (from rev 457416,
kapidox/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD (rev 0)
+++ testing-any/PKGBUILD 2022-10-09 20:33:05 UTC (rev 457417)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kapidox
+pkgver=5.99.0
+pkgrel=1
+pkgdesc='Frameworks API Documentation Tools'
+arch=(any)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(python-jinja python-yaml)
+makedepends=(python-build python-installer python-wheel python-setuptools
qt5-base)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('0c2d698a883b507f33830e1221a6558e628fb286c3cd030aac8e77507ee92897'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+
+build() {
+ cd $pkgname-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd $pkgname-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}