summaryrefslogtreecommitdiff
path: root/community/kmymoney/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/kmymoney/PKGBUILD')
-rw-r--r--community/kmymoney/PKGBUILD21
1 files changed, 13 insertions, 8 deletions
diff --git a/community/kmymoney/PKGBUILD b/community/kmymoney/PKGBUILD
index 64aed53d8..18c8221a8 100644
--- a/community/kmymoney/PKGBUILD
+++ b/community/kmymoney/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 40038 2011-02-19 15:18:41Z jlichtblau $
+# $Id: PKGBUILD 57452 2011-10-27 21:53:29Z lcarlier $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Vamp898 <vamp898@web.de>
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
@@ -6,30 +6,35 @@
# Contributor: Todd Maynard <arch@toddmaynard.com>
pkgname=kmymoney
-pkgver=4.5.3
+pkgver=4.6.0
pkgrel=1
pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money or Quicken"
arch=('i686' 'x86_64')
url="http://kmymoney2.sourceforge.net/"
license=('GPL')
-depends=('boost' 'kdebase-workspace' 'shared-mime-info' 'aqbanking' 'libofx')
-makedepends=('cmake' 'automoc4' 'docbook-xml' 'docbook-xsl' 'gwenhywfar')
+depends=('kdebase-workspace' 'shared-mime-info' 'aqbanking' 'libofx' 'libalkimia' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'docbook-xml' 'docbook-xsl' 'boost')
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=('a9b37275cf3cdcd5ce865d94391df44c7822639b830fccb9962a54b7fcf76ffb')
+sha256sums=('8f034a92682cc61dfa76c2593893524d00658c49360b17ddc67671e32ec7edf8')
build() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd ${srcdir}
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE
+ mkdir build
+ cd build
+
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=RELEASE
make
}
package() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd ${srcdir}/build
make DESTDIR=${pkgdir} install
}