diff options
author | Lenard Spencer <lenardrspencer@gmail.com> | 2021-01-22 20:30:15 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-01-23 18:18:51 +0700 |
commit | bf61de50d4f9234ac86660a2a761f61377c07f88 (patch) | |
tree | 79ae9a8d4744832d32f9ba004d5cf33b60f8fcfd /office | |
parent | 44fc28d1f39bf80a0154a548340aee2b03bd843d (diff) | |
download | slackbuilds-bf61de50d4f9234ac86660a2a761f61377c07f88.tar.gz |
office/gnucash-legacy: Remove aqbanking support.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r-- | office/gnucash-legacy/README | 6 | ||||
-rw-r--r-- | office/gnucash-legacy/gnucash-legacy.SlackBuild | 10 |
2 files changed, 6 insertions, 10 deletions
diff --git a/office/gnucash-legacy/README b/office/gnucash-legacy/README index 6070b0bd0f..d1c71a62a1 100644 --- a/office/gnucash-legacy/README +++ b/office/gnucash-legacy/README @@ -9,9 +9,13 @@ on professional accounting principles to ensure balanced books and accurate reports. Pass OFX="yes" for OFX (USA) (requies libofx) -Pass AQ="yes" to enable aqbanking (Germany) (requires aqbanking) + Pass WITHPYTHON="yes" to enable Python bindings for report gereration. +Note that the AQ="yes/no" switch has been removed as this version of +gnucash will not build with the new versions of aqbanking; the older +versions of aqbanking are not only obsolete, but no longer available. + If you want the SQL database integration, you must first have libdbi and libdbi-drivers installed, and then pass the DBI="yes" flag. diff --git a/office/gnucash-legacy/gnucash-legacy.SlackBuild b/office/gnucash-legacy/gnucash-legacy.SlackBuild index 942ef90282..c203787a98 100644 --- a/office/gnucash-legacy/gnucash-legacy.SlackBuild +++ b/office/gnucash-legacy/gnucash-legacy.SlackBuild @@ -85,14 +85,6 @@ else OFXBANKING="--disable-ofx" fi -if [ "$AQ" = "yes" ]; then - AQBANKING="--enable-aqbanking" - echo " building with aqbanking enabled" - sleep 1 -else - AQBANKING="--disable-aqbanking" -fi - if [ "$WITHPYTHON" = "yes" ]; then W_PYTHON="--enable-python" echo " building with Python bindings enabled" @@ -129,7 +121,7 @@ CXXFLAGS="$SLKCFLAGS" \ --docdir=/usr/doc/$SRCNAM-$VERSION \ $W_PYTHON \ $OFXBANKING \ - $AQBANKING \ + --disable-aqbanking \ --disable-schemas-compile \ $DBIARGS \ --build=$ARCH-slackware-linux |