mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
34 lines
1,021 B
Bash
34 lines
1,021 B
Bash
|
# $Id: PKGBUILD 3008 2009-09-25 12:25:17Z spupykin $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: David Moore <davidm@sjsoft.com>
|
||
|
|
||
|
pkgname=aqbanking
|
||
|
pkgver=4.1.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="A library for online banking and financial applications"
|
||
|
arch=(i686 x86_64)
|
||
|
options=('!libtool')
|
||
|
url="http://www.aquamaniac.de/aqbanking"
|
||
|
license=('GPL')
|
||
|
depends=('ktoblzcheck' 'libofx' 'gwenhywfar' 'qt3' 'gnutls')
|
||
|
options=('!makeflags')
|
||
|
source=("aqbanking-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=03&release=44&file=01&dummy=aqbanking-$pkgver.tar.gz")
|
||
|
md5sums=('f7a64678d89a052928f3f43e83d3d658')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/aqbanking-$pkgver
|
||
|
|
||
|
. /etc/profile.d/qt3.sh
|
||
|
export PATH=/opt/qt/bin:$PATH
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--with-frontends="cbanking qbanking" \
|
||
|
--with-backends="aqhbci aqofxconnect"
|
||
|
--enable-qt3 \
|
||
|
--with-qt3-includes=/opt/qt/include \
|
||
|
--with-qt3-libs=/opt/qt/lib
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|