Date: Friday, November 11, 2022 @ 20:07:05
Author: arojas
Revision: 461227
archrelease: copy trunk to kde-unstable-x86_64
Added:
kpeople/repos/kde-unstable-x86_64/
kpeople/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461226, kpeople/trunk/PKGBUILD)
kpeople/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: kpeople/repos/kde-unstable-x86_64/PKGBUILD (from rev 461226,
kpeople/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 20:07:05 UTC (rev 461227)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=kpeople
+pkgver=5.100.0
+pkgrel=1
+pkgdesc='A library that provides access to all contacts and the people who
hold them'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kcoreaddons ki18n kwidgetsaddons kitemviews)
+makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc qt5-declarative)
+optdepends=('qt5-declarative: QML bindings')
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('0f43151d5e5f91214925cae7d8e4089e3a9c364d200da8a6ff1ce6a4b3eb3ee1'
+ '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
+}