author | Antonio Rojas
<arojas@archlinux.org> 2023-11-29 19:55:08 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-11-29 19:55:08 UTC |
parent | efd264df87d457482b634eaee4c22a27a819337c |
.SRCINFO | +5 | -9 |
PKGBUILD | +6 | -11 |
diff --git a/.SRCINFO b/.SRCINFO index c685874..8071a5e 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.90.0 + pkgver = 5.27.9 pkgrel = 1 url = https://kde.org/plasma-desktop/ arch = x86_64 @@ -9,18 +9,14 @@ pkgbase = layer-shell-qt license = LGPL makedepends = extra-cmake-modules makedepends = wayland-protocols - 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 + 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 validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20 - sha256sums = ccda2aa681bdeb3128cb03e80954b8b36dcdb6eb53b0cd99928f721dd32c00df + sha256sums = 67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f sha256sums = SKIP pkgname = layer-shell-qt diff --git a/PKGBUILD b/PKGBUILD index 0633ac2..fb373e9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,23 +1,18 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=layer-shell-qt -pkgver=5.90.0 +pkgver=5.27.9 _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) -depends=(gcc-libs - glibc - qt6-base - qt6-wayland - wayland) -makedepends=(extra-cmake-modules - wayland-protocols) +source=(https://download.kde.org/stable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) +depends=(qt5-wayland) +makedepends=(extra-cmake-modules wayland-protocols) groups=(plasma) -source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) -sha256sums=('ccda2aa681bdeb3128cb03e80954b8b36dcdb6eb53b0cd99928f721dd32c00df' +sha256sums=('67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f' 'SKIP') validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell <jr@jriddell.org> '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D' # Bhushan Shah <bshah@kde.org> @@ -25,7 +20,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 }