author | Antonio Rojas
<arojas@archlinux.org> 2023-10-08 08:31:32 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-10-08 08:31:32 UTC |
parent | 151f19bc0766f264a3024a0f63876f5c96005899 |
.SRCINFO | +24 | -0 |
PKGBUILD | +17 | -7 |
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..0401d3d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,24 @@ +pkgbase = qqc2-desktop-style + pkgdesc = A style for Qt Quick Controls 2 to make it follow your desktop theme + 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 = git + depends = gcc-libs + depends = glibc + depends = kcolorscheme + depends = kconfig + depends = kiconthemes + depends = kirigami + depends = qt6-base + depends = qt6-declarative + depends = sonnet + source = git+https://invent.kde.org/frameworks/qqc2-desktop-style#commit=c33493f0d7d4a735a12513ebc8dc67d1916fc72d + validpgpkeys = 53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB + sha256sums = SKIP + +pkgname = qqc2-desktop-style diff --git a/PKGBUILD b/PKGBUILD index 1e50ba9..fbe713e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,22 +1,32 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=qqc2-desktop-style -pkgver=5.110.0 +pkgver=5.240.0.20231001 pkgrel=1 pkgdesc='A style for Qt Quick Controls 2 to make it follow your desktop theme' arch=(x86_64) url='https://community.kde.org/Frameworks' license=(LGPL) -groups=(kf5) -depends=(kirigami2 kiconthemes sonnet) +depends=(gcc-libs + glibc + kcolorscheme + kconfig + kiconthemes + kirigami + qt6-base + qt6-declarative + sonnet) makedepends=(extra-cmake-modules) -source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) -sha256sums=('6f3c2f73b283c7373b695f33eaa2479349dae135fdba2efd04fcab843285fe12' - 'SKIP') +groups=(kf6) +#source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) +makedepends+=(git) +_commit=c33493f0d7d4a735a12513ebc8dc67d1916fc72d +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 }