Install AqBanking 5.99 beta on CentOS 7

yum update
yum -y install gnutls-devel libgcrypt-devel qt4-devel gtk2-devel qt5-qtbase-devel gcc gcc-c++

yum remove gwenh*
cd /tmp
wget https://www.aquamaniac.de/rdm/attachments/download/136/gwenhywfar-4.99.15beta.tar.gz
tar xf gwenhywfar-4.99.15beta.tar.gz
cd gwenhywfar-4.99.15beta
./configure --with-qt4-libs=/usr/lib64 --with-guis="qt4 gtk2 gtk3" # qt5
make
make install # installs gwenhywfar to /usr/lib/cmake/gwenhywfar-4.99
ln -s /usr/include/gwenhywfar5/gwenhywfar /usr/include/gwenhywfar


If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the '-LLIBDIR' flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

 

 

AqBanking has several direct dependencies:
yum install -y xmlsec1-gnutls-devel libtool-ltdl-devel xmlsec1-gnutls libtool-ltdl

- "GMP", the GNU MP Bignum Library available from
  http://gmplib.org/index.html is required for calculations

- The python module "ctypes" http://sf.net/projects/ctypes is
required for the python wrappers of aqbanking. The python wrappers
are installed by default (to disable it, use --disable-python),
but they cannot be used unless "ctypes" is installed.

cd /tmp
AQ_VERSION=5.99.30beta
wget https://www.aquamaniac.de/rdm/attachments/download/134/aqbanking-${AQ_VERSION}.tar.gz
tar xf aqbanking-${AQ_VERSION}.tar.gz
cd aqbanking-${AQ_VERSION}
export LD_LIBRARY_PATH=/usr/lib
./configure
make
make install

export PKG_CONFIG_PATH=/tmp/gwenhywfar-4.99.15beta:/tmp/aqbanking-5.99.30beta