summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author Lenard Spencer2018-05-02 11:07:41 +0200
committer David Spencer2018-05-02 11:09:51 +0200
commitd228394d46f3215c65206be333ab42f77fd99364 (patch)
treeea135e20c766d03ecc6080ea1400ae30b2b49fa3 /office
parentb521519cf9617d55684fc02e723d00be8103fb41 (diff)
downloadold.slackbuilds-d228394d46f3215c65206be333ab42f77fd99364.tar.gz
office/gnucash: Change option to WITHPYTHON.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/gnucash/README5
-rw-r--r--office/gnucash/gnucash.SlackBuild4
2 files changed, 3 insertions, 6 deletions
diff --git a/office/gnucash/README b/office/gnucash/README
index d3d2451ed5..a54d230648 100644
--- a/office/gnucash/README
+++ b/office/gnucash/README
@@ -10,13 +10,10 @@ accurate reports.
Pass OFX="yes" for OFX (USA) (requies libofx)
Pass AQ="yes" to enable aqbanking (Germany) (requires aqbanking)
-Pass WITH_PYTHON="yes" to enable python bindings for report generation
+Pass WITHPYTHON="yes" to enable python bindings for report generation
If you want the SQL database integration, you must first have libdbi
and libdbi-drivers installed, and then pass the DBI="yes" flag.
NOTE: You must remove any previous installation of Gnucash before
running this script, otherwise the build will fail.
-
-EOL NOTE: According to the developers, this is the last release of the
-2.6.x series, with attention shifting to the 3.x series.
diff --git a/office/gnucash/gnucash.SlackBuild b/office/gnucash/gnucash.SlackBuild
index 8de21d8753..1745e45414 100644
--- a/office/gnucash/gnucash.SlackBuild
+++ b/office/gnucash/gnucash.SlackBuild
@@ -25,7 +25,7 @@
PRGNAM=gnucash
VERSION=${VERSION:-2.6.21}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -92,7 +92,7 @@ else
AQBANKING="--disable-aqbanking"
fi
-if [ "$WITH_PYTHON" = "yes" ]; then
+if [ "$WITHPYTHON" = "yes" ]; then
W_PYTHON="--enable-python"
echo " building with Python bindings enabled"
sleep 1