fix akonadi app crash on exit problem

This commit is contained in:
Weng Xuetian 2015-12-18 17:11:23 +01:00
parent 19a9b4fc04
commit b4db432ecd

View File

@ -4,18 +4,22 @@ source ../kdeapps.conf
pkgbase=kdepimlibs
pkgname=(akonadi-client akonadi-contact akonadi-mime akonadi-notes akonadi-socialutils kio-pim)
pkgver=${_kdever}
pkgrel=1
pkgrel=2
pkgdesc="KDE PIM Libraries"
arch=('x86_64')
url='https://projects.kde.org/kdepimlibs'
license=(GPL LGPL)
makedepends=(extra-cmake-modules qt5-tools kcalcore kmbox kcontacts kldap akonadi prison-kf5 boost kdoctools)
options=('docs' 'debug')
source=("$_mirror/${pkgbase}-$_kdever.tar.xz")
sha256sums=(`grep ${pkgbase}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
source=("$_mirror/${pkgbase}-$_kdever.tar.xz"
"fix-crash-on-exit.patch")
sha256sums=(`grep ${pkgbase}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`
"5401cefbcda65a0d31dde7541d57ddbc772a7bc0c70f111aca79c29e1da72bac")
prepare() {
mkdir -p build
cd ${pkgbase}-${pkgver}
patch -Np1 -i ../fix-crash-on-exit.patch
}
build() {
@ -67,4 +71,4 @@ package_kio-pim() {
cd build/kioslave
make DESTDIR="$pkgdir" install
}
}