git » plasma-framework.git » commit 5f24a85

Fix plasmoid sizes

author Antonio Rojas
2022-04-16 20:02:18 UTC
committer Antonio Rojas
2022-04-16 20:02:18 UTC
parent b6dd5540ef762387fb2c45f70a98c379fb290832

Fix plasmoid sizes

PKGBUILD +9 -3

diff --git a/PKGBUILD b/PKGBUILD
index a7351e7..4e96313 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.93.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -12,12 +12,18 @@ license=(LGPL)
 depends=(kactivities kdeclarative kwayland kirigami2)
 makedepends=(extra-cmake-modules qt5-tools qt5-doc kdoctools doxygen)
 groups=(kf5)
-source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+        https://invent.kde.org/frameworks/plasma-framework/-/commit/b62d83be.patch)
 sha256sums=('d4a2c687ea2ea8dfe7c256eb58441fc458102ed4b445dc24685513dd96b5c322'
-            'SKIP')
+            'SKIP'
+            '441555e3bda01c0f6d13985df8b033df7661b1410817b85a18e595250369b68e')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
 options=(debug)
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < b62d83be.patch # Fix plasmoid sizes
+}
+
 build() {
   cmake -B build -S $pkgname-$pkgver \
     -DBUILD_TESTING=OFF \