author | Antonio Rojas
<arojas@archlinux.org> 2023-11-29 19:38:02 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-11-29 19:38:02 UTC |
parent | 86410115a43d1d5cb2b28ed049295b1b83030d73 |
.SRCINFO | +9 | -5 |
PKGBUILD | +11 | -6 |
diff --git a/.SRCINFO b/.SRCINFO index 8071a5e..c685874 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = layer-shell-qt pkgdesc = Qt component to allow applications to make use of the Wayland wl-layer-shell protocol - pkgver = 5.27.9 + pkgver = 5.90.0 pkgrel = 1 url = https://kde.org/plasma-desktop/ arch = x86_64 @@ -9,14 +9,18 @@ pkgbase = layer-shell-qt license = LGPL makedepends = extra-cmake-modules makedepends = wayland-protocols - depends = qt5-wayland - source = https://download.kde.org/stable/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz - source = https://download.kde.org/stable/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz.sig + depends = gcc-libs + depends = glibc + depends = qt6-base + depends = qt6-wayland + depends = wayland + source = https://download.kde.org/unstable/plasma/5.90.0/layer-shell-qt-5.90.0.tar.xz + source = https://download.kde.org/unstable/plasma/5.90.0/layer-shell-qt-5.90.0.tar.xz.sig validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20 - sha256sums = 67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f + sha256sums = ccda2aa681bdeb3128cb03e80954b8b36dcdb6eb53b0cd99928f721dd32c00df sha256sums = SKIP pkgname = layer-shell-qt diff --git a/PKGBUILD b/PKGBUILD index fb373e9..0633ac2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,18 +1,23 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=layer-shell-qt -pkgver=5.27.9 +pkgver=5.90.0 _dirver=$(echo $pkgver | cut -d. -f1-3) pkgrel=1 pkgdesc='Qt component to allow applications to make use of the Wayland wl-layer-shell protocol' arch=(x86_64) url='https://kde.org/plasma-desktop/' license=(GPL LGPL) -source=(https://download.kde.org/stable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) -depends=(qt5-wayland) -makedepends=(extra-cmake-modules wayland-protocols) +depends=(gcc-libs + glibc + qt6-base + qt6-wayland + wayland) +makedepends=(extra-cmake-modules + wayland-protocols) groups=(plasma) -sha256sums=('67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f' +source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('ccda2aa681bdeb3128cb03e80954b8b36dcdb6eb53b0cd99928f721dd32c00df' 'SKIP') validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell <jr@jriddell.org> '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D' # Bhushan Shah <bshah@kde.org> @@ -20,7 +25,7 @@ validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com> build() { - cmake -B build -S $pkgname-$pkgver + cmake -B build -S $pkgname-$pkgver cmake --build build }