/usr/bin/aqbanking-config is in libaqbanking34-dev 5.4.3beta-2+b1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | #! /bin/sh
dir="/usr"
# $Id$
# Author of this file: Martin Preuss<martin@libchipcard.de>
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
datarootdir=${prefix}/share
includedir=${prefix}/include
datadir=${datarootdir}
result=""
for d in $*; do
case $d in
--includes)
result="$result -I${includedir}/aqbanking5 -I/usr/include/gwenhywfar4"
;;
--libraries)
result="$result -L${libdir} -laqbanking"
;;
--libraries++)
result="$result "
;;
--plugins)
result="$result ${libdir}/aqbanking/plugins/34"
;;
--data)
result="$result ${datadir}/aqbanking"
;;
--has-qbanking)
result=@with_qbanking@
;;
--qbanking-libraries)
result="$result -L${libdir} @qbanking_libs@"
;;
--qbanking-plugins)
result="$result @qbanking_plugindir@"
;;
--qbanking-helpdir)
result="$result @qbanking_helpdir@"
;;
--has-aqhbci)
result=yes
;;
--aqhbci-libraries)
result="$result -L${libdir} -laqhbci"
;;
--vmajor)
result="$result 5"
;;
--vminor)
result="$result 4"
;;
--vpatchlevel)
result="$result 3"
;;
--vbuild)
result="$result 0"
;;
--vtag)
result="$result beta"
;;
--vstring)
result="$result 5.4.3"
;;
*)
echo "Usage:"
echo "$0 --includes gives you the include flags"
echo "$0 --libraries gives you the library flags"
echo "$0 --vmajor gives the major version of AqBanking"
echo "$0 --vminor gives the minor version of AqBanking"
echo "$0 --vpatchlevel gives the patchlevel of AqBanking"
echo "$0 --vbuild gives the build number of AqBanking"
echo "$0 --vtag gives the tag of AqBanking (cvs, beta or stable)"
echo "$0 --vstring returns a version string"
exit 1
;;
esac
done
echo $result
|