34 lines
964 B
Bash
34 lines
964 B
Bash
# Maintainer: Jesus E. <heckyel@riseup.net>
|
|
|
|
pkgname=aqbanking
|
|
pkgver=6.5.3
|
|
pkgrel=1
|
|
pkgdesc="A library for online banking and financial applications"
|
|
arch=('i686' 'x86_64')
|
|
url='https://www.aquamaniac.de/rdm/projects/aqbanking'
|
|
license=('GPL-2')
|
|
depends=('gwenhywfar')
|
|
makedepends=('intltool' 'gettext-tiny')
|
|
options=('!makeflags')
|
|
source=("https://www.aquamaniac.de/rdm/attachments/download/467/${pkgname}-${pkgver}.tar.gz")
|
|
sha512sums=('bca4449981f9660dc7de8506a2088981b52dcf4ded765fd337263962b464b7903319878e8efbce6cbef043b65be8edb828fee873f19e8c6b2fed0cf7906d58b2')
|
|
|
|
build() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
export PKG_CONFIG=/usr/bin/pkg-config
|
|
# removed unfree service paypal
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-gwenhywfar \
|
|
--with-backends="aqhbci aqofxconnect aqnone"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
|
|
}
|