Date: Saturday, November 13, 2021 @ 11:14:28
Author: arojas
Revision: 428257
archrelease: copy trunk to testing-x86_64
Added:
kactivities/repos/testing-x86_64/
kactivities/repos/testing-x86_64/PKGBUILD
(from rev 428256, kactivities/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: kactivities/repos/testing-x86_64/PKGBUILD (from rev 428256,
kactivities/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-11-13 11:14:28 UTC (rev 428257)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kactivities
+pkgver=5.88.0
+pkgrel=1
+arch=(x86_64)
+pkgdesc='Core components for KDE Activities'
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kcoreaddons kconfig kwindowsystem)
+makedepends=(extra-cmake-modules boost 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=('ceec595cf5ff6de06a05fa54f0549a257e74afbfcc712b54a6018be7edb89822'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DBUILD_QCH=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}