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