Date: Friday, November 11, 2022 @ 19:58:21
Author: arojas
Revision: 461180
archrelease: copy trunk to kde-unstable-x86_64
Added:
kglobalaccel/repos/kde-unstable-x86_64/
kglobalaccel/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461179, kglobalaccel/trunk/PKGBUILD)
kglobalaccel/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: kglobalaccel/repos/kde-unstable-x86_64/PKGBUILD (from rev 461179,
kglobalaccel/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 19:58:21 UTC (rev 461180)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kglobalaccel
+pkgver=5.100.0
+pkgrel=1
+pkgdesc='Add support for global workspace shortcuts'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kdbusaddons kconfig kcrash)
+makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('c39b4ef33e4c80a6478b6f5a162839d3523c5e4e14c44af647d7f1a72192a2f2'
+ '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
+}