author | Felix Yan
<felixonmars@archlinux.org> 2021-08-16 05:20:31 UTC |
committer | Felix Yan
<felixonmars@archlinux.org> 2021-08-16 05:20:31 UTC |
parent | 2ee556dcfc116363c6df3fadc3b5d0fa4cc79fd9 |
PKGBUILD | +10 | -3 |
diff --git a/PKGBUILD b/PKGBUILD index 867dce9..5b1d242 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=plasma-framework pkgver=5.85.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,11 +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/837bb6975f6a0661d211107823b7587808fc3d4e.patch) sha256sums=('879b3a97ec1a43a7108a2469e5d23578f05b1afcd838b286576ca5a14fadf8ff' - 'SKIP') + 'SKIP' + 'ef985ee3fddc615f0c44b14de4efc56ffd7568afba066019f58ce10b645a3dac') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> +prepare() { + # Upstream suggested to backport + patch -d $pkgname-$pkgver -p1 < 837bb6975f6a0661d211107823b7587808fc3d4e.patch +} + build() { cmake -B build -S $pkgname-$pkgver \ -DBUILD_TESTING=OFF \