Date: Friday, November 11, 2022 @ 20:08:55
Author: arojas
Revision: 461236
archrelease: copy trunk to kde-unstable-x86_64
Added:
qqc2-desktop-style/repos/kde-unstable-x86_64/
qqc2-desktop-style/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461235, qqc2-desktop-style/trunk/PKGBUILD)
qqc2-desktop-style/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: qqc2-desktop-style/repos/kde-unstable-x86_64/PKGBUILD (from rev 461235,
qqc2-desktop-style/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 20:08:55 UTC (rev 461236)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=qqc2-desktop-style
+pkgver=5.100.0
+pkgrel=1
+pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+groups=(kf5)
+depends=(kirigami2 kiconthemes sonnet)
+makedepends=(extra-cmake-modules)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('a97bbfeddd6915c6ba90bc5062308610631bf1fe3f15b1e3143b839dce6c2f26'
+ 'SKIP')
+validpgpkeys=('53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB') # David Faure
<[email protected]>
+options=(debug)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}