git » kate.git » commit 607141b

Fix lingering process with KF 5.17 (FS#47352)

author Antonio Rojas
2015-12-13 09:18:02 UTC
committer Antonio Rojas
2015-12-13 09:18:02 UTC
parent 97a16f252f0ab9fea586bae9e77a5baeac05c525

Fix lingering process with KF 5.17 (FS#47352)

PKGBUILD +8 -3

diff --git a/PKGBUILD b/PKGBUILD
index ddb5d3d..3f8ec16 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,16 +5,21 @@ pkgbase=kate
 pkgname=('kwrite'
          'kate')
 pkgver=15.08.3
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 'kactivities-frameworks')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
-source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz")
-sha1sums=('df6d4fbfb5af79aa67051b1967fb00aecefcd920')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz" lingering-process.patch)
+sha1sums=('df6d4fbfb5af79aa67051b1967fb00aecefcd920'
+          'c3c017c429f3db6c458cd905d51356dc63d4a00c')
 
 prepare() {
   mkdir -p build
+
+# Fix lingering process after closing window
+  cd $pkgbase-$pkgver
+  patch -p1 -i ../lingering-process.patch
 }
 
 build() {