summaryrefslogtreecommitdiff
path: root/community/kmymoney
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-19 23:15:25 +0000
committerroot <root@rshg054.dnsready.net>2012-02-19 23:15:25 +0000
commit81ee1980feda43043eaebae2c596ae116a21f6e5 (patch)
tree5a48e15abb2f2d299a6c08bf44e1b136ae6a7fb8 /community/kmymoney
parent1098e9db0acc5bb5c45af5778492faf3b4c99dd6 (diff)
Sun Feb 19 23:15:25 UTC 2012
Diffstat (limited to 'community/kmymoney')
-rw-r--r--community/kmymoney/PKGBUILD22
1 files changed, 14 insertions, 8 deletions
diff --git a/community/kmymoney/PKGBUILD b/community/kmymoney/PKGBUILD
index 87a39c562..6d88e6f64 100644
--- a/community/kmymoney/PKGBUILD
+++ b/community/kmymoney/PKGBUILD
@@ -1,12 +1,13 @@
-# $Id: PKGBUILD 58094 2011-11-06 14:12:09Z lcarlier $
+# $Id: PKGBUILD 64897 2012-02-18 19:53:56Z lcarlier $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Maintainer: Laurent Carlier <lordheavym@gmail.com>
# Contributor: Vamp898 <vamp898@web.de>
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: Todd Maynard <arch@toddmaynard.com>
pkgname=kmymoney
-pkgver=4.6.1
+pkgver=4.6.2
pkgrel=1
pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money or Quicken"
arch=('i686' 'x86_64')
@@ -18,23 +19,28 @@ replaces=('kmymoney2')
install=$pkgname.install
changelog=$pkgname.changelog
options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/kmymoney2/KMyMoney-KDE4/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('5fcab9c4f1b5868aabb816a87c61cb025e69a191f6cb218cce3f29f0c1c1b77a')
+source=(http://downloads.sourceforge.net/project/kmymoney2/KMyMoney-KDE4/$pkgver/$pkgname-$pkgver.tar.bz2
+qt4.8.patch::https://projects.kde.org/projects/extragear/office/kmymoney/repository/revisions/c736b6f08e77df72d58c5b836b7b04f6098737df/diff/libkdchart/src/KDChartBackgroundAttributes.cpp?format=diff)
+sha256sums=('add8acba2f0d4c212ac1c7fbbdad2fd43a24caceed586b13d90dcd2a20a12b75'
+ '7612b490400dbd4f80ff27bd328f8603a22279c81bb3004e53f48545dbd359ae')
build() {
- cd ${srcdir}
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ # Qt 4.8 fix - fixed upstream
+ patch -Np1 -i ../qt4.8.patch
mkdir build
cd build
- cmake ../${pkgname}-${pkgver} \
+ cmake ../ \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RELEASE
- make
+ make VERBOSE=1
}
package() {
- cd ${srcdir}/build
+ cd ${srcdir}/${pkgname}-${pkgver}/build
make DESTDIR=${pkgdir} install
}