Difference between revisions of "AqBanking"
From CBLFS
Jump to navigationJump to searchLine 60: | Line 60: | ||
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 80: | ||
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){,-32}; |
done | done | ||
Line 100: | Line 100: | ||
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}; |
− | ln -sfv multiarch_wrapper /usr/bin/$f | + | ln -sfv multiarch_wrapper /usr/bin/$(basename $f) |
done | done | ||
Revision as of 10:41, 24 December 2006
Download Source: | http://downloads.sourceforge.net/aqbanking/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 Qt, KDE, GTK, and console. It is used by KMyMoney.
Dependencies
Required
Recommended
Optional
Configuration Information
If you do not have Libglade installed add the following to configure:
--with-frontends="cbanking qbanking kbanking"
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){,-32}; 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){,-32}; 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 |