Date: Sunday, March 13, 2022 @ 12:37:29
Author: arojas
Revision: 439505
archrelease: copy trunk to testing-x86_64
Added:
kguiaddons/repos/testing-x86_64/
kguiaddons/repos/testing-x86_64/PKGBUILD
(from rev 439504, kguiaddons/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: kguiaddons/repos/testing-x86_64/PKGBUILD (from rev 439504,
kguiaddons/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-03-13 12:37:29 UTC (rev 439505)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kguiaddons
+pkgver=5.92.0
+pkgrel=1
+pkgdesc='Addons to QtGui'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-x11extras qt5-wayland)
+makedepends=(extra-cmake-modules clang doxygen qt5-tools qt5-doc)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('0f6775a565f22900b0de53daa5fe73f7d7e592663e0bb442a8e26ffab27fdf5f'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+options=(debug)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DBUILD_QCH=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}