author | Antonio Rojas
<arojas@archlinux.org> 2023-12-20 22:08:55 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-12-20 22:08:55 UTC |
parent | c225c176647e9e586af7463d59d8c8a60aa8e4ca |
.SRCINFO | +9 | -5 |
PKGBUILD | +11 | -6 |
diff --git a/.SRCINFO b/.SRCINFO index c872c32..c68f206 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.10 + pkgver = 5.91.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.10/layer-shell-qt-5.27.10.tar.xz - source = https://download.kde.org/stable/plasma/5.27.10/layer-shell-qt-5.27.10.tar.xz.sig + depends = gcc-libs + depends = glibc + depends = qt6-base + depends = qt6-wayland + depends = wayland + source = https://download.kde.org/unstable/plasma/5.91.0/layer-shell-qt-5.91.0.tar.xz + source = https://download.kde.org/unstable/plasma/5.91.0/layer-shell-qt-5.91.0.tar.xz.sig validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20 - sha256sums = 0aed80cf2a143033c186df5343215acd638c80e419b4e854a14bd35ba3d4c3c2 + sha256sums = 3e37efa71e87a5a576f8ae8a028ef9921ff36b275900d07a31094df39f58dc08 sha256sums = SKIP pkgname = layer-shell-qt diff --git a/PKGBUILD b/PKGBUILD index b273c65..799051b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,18 +1,23 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=layer-shell-qt -pkgver=5.27.10 +pkgver=5.91.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=('0aed80cf2a143033c186df5343215acd638c80e419b4e854a14bd35ba3d4c3c2' +source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('3e37efa71e87a5a576f8ae8a028ef9921ff36b275900d07a31094df39f58dc08' '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 }