mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
773 B
Bash
24 lines
773 B
Bash
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
|
|
# Contributor: Eric Belanger <eric@archlinux.org>
|
|
# Contributor: Todd Maynard <arch@toddmaynard.com>
|
|
|
|
pkgname=kmymoney2
|
|
pkgver=1.0.2
|
|
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=('GPL2')
|
|
depends=('kdelibs3' 'libofx' 'libxml++' 'qt3')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
. /etc/profile.d/qt3.sh
|
|
. /etc/profile.d/kde3.sh
|
|
|
|
./configure --prefix=/opt/kde --enable-ofxbanking --without-arts
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
md5sums=('47de02c4c7e44fb208d2f176764a7f7d')
|