Date: Friday, November 11, 2022 @ 20:07:15
Author: arojas
Revision: 461228
archrelease: copy trunk to kde-unstable-x86_64
Added:
kquickcharts/repos/kde-unstable-x86_64/
kquickcharts/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461227, kquickcharts/trunk/PKGBUILD)
kquickcharts/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
Copied: kquickcharts/repos/kde-unstable-x86_64/PKGBUILD (from rev 461227,
kquickcharts/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 20:07:15 UTC (rev 461228)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=kquickcharts
+pkgver=5.100.0
+pkgrel=1
+pkgdesc='A QtQuick plugin providing high-performance charts'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-quickcontrols2)
+makedepends=(extra-cmake-modules)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('3ff3de4ae87dcb17db3bd3451cfdb99f004c16dd0cafa53ef452abfed86aadac'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+options=(debug)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}