Date: Friday, November 11, 2022 @ 20:05:41
Author: arojas
Revision: 461219
archrelease: copy trunk to kde-unstable-x86_64
Added:
kcontacts/repos/kde-unstable-x86_64/
kcontacts/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461218, kcontacts/trunk/PKGBUILD)
kcontacts/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: kcontacts/repos/kde-unstable-x86_64/PKGBUILD (from rev 461218,
kcontacts/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 20:05:41 UTC (rev 461219)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=kcontacts
+epoch=1
+pkgver=5.100.0
+pkgrel=1
+pkgdesc='Address book API for KDE'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kcoreaddons kconfig ki18n kcodecs)
+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=('e5063a08367525923cd6c500c7c6674b3a4ee16ec9866207bfe36c0df8c6884b'
+ '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
+}