Date: Sunday, February 9, 2020 @ 10:08:05
Author: arojas
Revision: 375090
archrelease: copy trunk to testing-x86_64
Added:
kactivities-stats/repos/testing-x86_64/
kactivities-stats/repos/testing-x86_64/PKGBUILD
(from rev 375089, kactivities-stats/trunk/PKGBUILD)
----------+
PKGBUILD | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
Copied: kactivities-stats/repos/testing-x86_64/PKGBUILD (from rev 375089,
kactivities-stats/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-09 10:08:05 UTC (rev 375090)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kactivities-stats
+pkgver=5.67.0
+pkgrel=1
+arch=(x86_64)
+pkgdesc="A library for accessing the usage data collected by the activities
system"
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kactivities)
+makedepends=(extra-cmake-modules boost doxygen qt5-tools qt5-doc)
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a5cf10e8731cff0d136a261e43aff5f3331cd9d399061058d72b60fce94db005'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DBUILD_QCH=ON
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}