AqBanking: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| (8 intermediate revisions by 4 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http:// | | http://www.aquamaniac.de/sites/download/download.php?package=03&release=06&file=01&dummy=aqbanking-{{aqbanking-Version}}.tar.gz | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|AqBanking is a modular and generic interface to online banking tasks, financial file formats (import/export) and bank/country/currency information. It provides frontends for [[Qt3]], [[KDE3]], [[Gtk2]], and console. Financial programs such as [[GnuCash]] and [[KMyMoney]] can use it for online banking.|http://www.aquamaniac.de/aqbanking/}} | |||
AqBanking is a modular and generic interface to online banking tasks, financial file formats (import/export) and bank/country/currency information. It provides frontends for | |||
== Dependencies == | == Dependencies == | ||
=== Recommended === | === Recommended === | ||
| Line 21: | Line 15: | ||
* [[libchipcard]] | * [[libchipcard]] | ||
* [[LibOFX]] | * [[LibOFX]] | ||
One or more of the following is recommended for a GUI frontend. | |||
* [[KdeLibs]] | |||
* [[Libglade]] | |||
* [[Qt3]] | |||
=== Optional === | === Optional === | ||
| Line 27: | Line 26: | ||
== Configuration Information == | == Configuration Information == | ||
To enable one or more GUI frontends, pass the following to the configure script omitting any frontend for which you lack dependencies. | |||
--with-frontends="cbanking qbanking kbanking" | --with-frontends="cbanking qbanking kbanking g2banking" | ||
== Non-Multilib == | == Non-Multilib == | ||
| Line 60: | Line 59: | ||
unset USE_ARCH && | unset USE_ARCH && | ||
for f in {,src/{frontends,plugins/backends}/*/}*-config; do | for f in {,src/{frontends,plugins/backends}/*/}*-config; do | ||
mv -v /usr/bin/$f{,-32}; | mv -v /usr/bin/$(basename $f){,-32}; | ||
done | done | ||
| Line 80: | Line 79: | ||
unset USE_ARCH && | unset USE_ARCH && | ||
for f in {,src/{frontends,plugins/backends}/*/}*-config; do | for f in {,src/{frontends,plugins/backends}/*/}*-config; do | ||
mv -v /usr/bin/$f{,-n32}; | mv -v /usr/bin/$(basename $f){,-n32}; | ||
done | done | ||
| Line 100: | Line 99: | ||
unset USE_ARCH && | unset USE_ARCH && | ||
for f in {,src/{frontends,plugins/backends}/*/}*-config; do | for f in {,src/{frontends,plugins/backends}/*/}*-config; do | ||
mv -v /usr/bin/$f{,- | mv -v /usr/bin/$(basename $f){,-64}; | ||
ln -sfv multiarch_wrapper /usr/bin/$f | ln -sfv multiarch_wrapper /usr/bin/$(basename $f) | ||
done | done | ||
| Line 117: | Line 116: | ||
| /usr/lib/aqbanking, /usr/include/aqbanking | | /usr/lib/aqbanking, /usr/include/aqbanking | ||
|} | |} | ||
[[Category:Financial]] | |||
Latest revision as of 17:31, 27 June 2009
| Download Source: | http://www.aquamaniac.de/sites/download/download.php?package=03&release=06&file=01&dummy=aqbanking-3.7.2.tar.gz |
|---|
Introduction to AqBanking
AqBanking is a modular and generic interface to online banking tasks, financial file formats (import/export) and bank/country/currency information. It provides frontends for Qt3, KDE3, Gtk2, and console. Financial programs such as GnuCash and KMyMoney can use it for online banking.
Project Homepage: http://www.aquamaniac.de/aqbanking/
Dependencies
Recommended
One or more of the following is recommended for a GUI frontend.
Optional
Configuration Information
To enable one or more GUI frontends, pass the following to the configure script omitting any frontend for which you lack dependencies.
--with-frontends="cbanking qbanking kbanking g2banking"
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
export USE_ARCH=32 &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --with-kde3-libs=${KDE_PREFIX}/lib \
--with-qt3-libs=${QTDIR}/lib &&
make
Install the package
make install &&
unset USE_ARCH &&
for f in {,src/{frontends,plugins/backends}/*/}*-config; do
mv -v /usr/bin/$(basename $f){,-32};
done
N32
Compile the package:
export USE_ARCH=n32 &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
--with-kde3-libs=${KDE_PREFIX}/lib32 \
--with-qt3-libs=${QTDIR}/lib32 &&
make
Install the package
make install &&
unset USE_ARCH &&
for f in {,src/{frontends,plugins/backends}/*/}*-config; do
mv -v /usr/bin/$(basename $f){,-n32};
done
64Bit
Compile the package:
export USE_ARCH=64 &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
--with-kde3-libs=${KDE_PREFIX}/lib64 \
--with-qt3-libs=${QTDIR}/lib64 &&
make
Install the package
make install &&
unset USE_ARCH &&
for f in {,src/{frontends,plugins/backends}/*/}*-config; do
mv -v /usr/bin/$(basename $f){,-64};
ln -sfv multiarch_wrapper /usr/bin/$(basename $f)
done
Contents
| Installed Programs: | aqbanking-config, aqbanking-tool, cbanking-config, kbanking-config, qbanking-config, g2banking-config, aqdtaus-config, aqgeldkarte-config, aqhbci-config, aqofxconnect-config, |
|---|---|
| Installed Libraries: | libaqbanking.{la,so} |
| Installed Directories: | /usr/lib/aqbanking, /usr/include/aqbanking |