mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
31 lines
838 B
Bash
31 lines
838 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=aqbanking-qt4
|
|
pkgver=5.0.25
|
|
_dnrel=95
|
|
pkgrel=2
|
|
pkgdesc="A library for online banking and financial applications"
|
|
arch=(i686 x86_64)
|
|
options=('!libtool')
|
|
url="http://www.aquamaniac.de/aqbanking"
|
|
license=('GPL')
|
|
depends=('gwenhywfar' 'ktoblzcheck' 'libofx')
|
|
options=('!makeflags' '!libtool')
|
|
source=("aqbanking-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=03&release=${_dnrel}&file=01&dummy=aqbanking-$pkgver.tar.gz")
|
|
md5sums=('b238639962128ce25db81870f65173d9')
|
|
|
|
build() {
|
|
cd $srcdir/aqbanking-$pkgver
|
|
export PKG_CONFIG=/usr/bin/pkg-config
|
|
./configure --prefix=/usr \
|
|
--with-backends="aqhbci aqofxconnect" \
|
|
--enable-gwenhywfar
|
|
make
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
|