git » kio.git » commit 8659b35

Fix custom folder icons (KDEBUG#350612)

author Antonio Rojas
2015-08-14 22:51:31 UTC
committer Antonio Rojas
2015-08-14 22:51:31 UTC
parent 917570929bda9549ba732dfee6b6586a7b2bb5ce

Fix custom folder icons (KDEBUG#350612)

PKGBUILD +8 -3

diff --git a/PKGBUILD b/PKGBUILD
index 1f4394f..238c393 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 
 pkgname=kio
 pkgver=5.13.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Resource and network access abstraction'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/kio'
@@ -14,11 +14,16 @@ makedepends=('extra-cmake-modules' 'kdoctools')
 optdepends=('kio-extras: extra protocols support (sftp, fish and more)')
 groups=('kf5')
 install=kio.install
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('315c79dc4fb128343d18bfd9ef18a726')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz" 'custom-folder-icons.patch')
+md5sums=('315c79dc4fb128343d18bfd9ef18a726'
+         '9b534ca29ef53644344541c5c770ff51')
 
 prepare() {
   mkdir -p build
+
+# Fix custom folder icons https://bugs.kde.org/show_bug.cgi?id=350612
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/custom-folder-icons.patch
 }
 
 build() {