Difference between revisions of "AqBanking"
From CBLFS
Jump to navigationJump to searchChipster19 (talk | contribs) |
|||
(9 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 === | ||
* [[doxygen]] | * [[doxygen]] | ||
+ | |||
+ | == 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 == | == Non-Multilib == | ||
− | |||
− | |||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=/usr | + | ./configure --prefix=/usr && |
make | make | ||
Line 42: | Line 45: | ||
=== 32Bit === | === 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 === | === 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 === | === 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 = | = Contents = | ||
Line 65: | 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 |
---|
Contents
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 |