summaryrefslogtreecommitdiffstats
path: root/office/gnucash/doinst.sh
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-12-05 08:52:28 +0100
committer Robby Workman <rworkman@slackbuilds.org>2013-12-06 00:00:10 -0600
commita14636f92ef0f344c6cdd15a74ffaade5d56bb98 (patch)
treeae406d9347635d3c023df119c3f6730b7a43e895 /office/gnucash/doinst.sh
parent93bc114aac4a1acf02c0236362d0e1654804740b (diff)
downloadslackbuilds-a14636f92ef0f344c6cdd15a74ffaade5d56bb98.tar.gz
slackbuilds-a14636f92ef0f344c6cdd15a74ffaade5d56bb98.tar.xz
office/gnucash: Added (financial accounting application).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'office/gnucash/doinst.sh')
-rw-r--r--office/gnucash/doinst.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/office/gnucash/doinst.sh b/office/gnucash/doinst.sh
new file mode 100644
index 0000000000..d9a46b591b
--- /dev/null
+++ b/office/gnucash/doinst.sh
@@ -0,0 +1,32 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+config etc/gnucash/environment.new
+config etc/gnucash/config.new
+
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi
+
+if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
+ if [ -x /usr/bin/gtk-update-icon-cache ]; then
+ /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
+ fi
+fi
+
+if [ -e usr/share/glib-2.0/schemas ]; then
+ if [ -x /usr/bin/glib-compile-schemas ]; then
+ /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1
+ fi
+fi
+