author | Antonio Rojas
<arojas@archlinux.org> 2023-10-07 23:16:16 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-10-07 23:16:16 UTC |
parent | c4d0dbc909b9bcbb9fc2d95357b9bd2711cd882d |
.SRCINFO | +20 | -0 |
PKGBUILD | +14 | -8 |
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..9c479ec --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = kquickcharts + pkgdesc = A QtQuick plugin providing high-performance charts + pkgver = 5.240.0.20231001 + pkgrel = 1 + url = https://community.kde.org/Frameworks + arch = x86_64 + groups = kf6 + license = LGPL + makedepends = extra-cmake-modules + makedepends = qt6-shadertools + makedepends = git + depends = gcc-libs + depends = glibc + depends = qt6-base + depends = qt6-declarative + source = git+https://invent.kde.org/frameworks/kquickcharts#commit=34bbef032a99336826a1341c69f988fe7ec11287 + validpgpkeys = 53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB + sha256sums = SKIP + +pkgname = kquickcharts diff --git a/PKGBUILD b/PKGBUILD index 29d366a..532d02b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,22 +2,28 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=kquickcharts -pkgver=5.110.0 +pkgver=5.240.0.20231001 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=('bbc897c701dc6d356a316d17e4f71cd90bc62dffadd5ea8ee5a68a0eabb61d69' - 'SKIP') +depends=(gcc-libs + glibc + qt6-base + qt6-declarative) +makedepends=(extra-cmake-modules + qt6-shadertools) +groups=(kf6) +#source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +makedepends+=(git) +_commit=34bbef032a99336826a1341c69f988fe7ec11287 +source=(git+https://invent.kde.org/frameworks/$pkgname#commit=$_commit) +sha256sums=('SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> build() { - cmake -B build -S $pkgname-$pkgver \ + cmake -B build -S $pkgname \ -DBUILD_TESTING=OFF cmake --build build }