diff options
author | David Somero <dsomero@hotmail.com> | 2010-08-17 15:31:07 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-08-18 14:01:18 -0500 |
commit | 28085bbb36f6e6461116382a86578f336d00a236 (patch) | |
tree | eb723fc6fa01a6c64c7e7ff49ac93fd009709e75 /office/go_openoffice/doinst.sh | |
parent | b4df57c291d2745fd92b759df9caa97aed996f9c (diff) | |
download | slackbuilds-28085bbb36f6e6461116382a86578f336d00a236.tar.gz |
office/go_openoffice: Added (fork of OpenOffice.org)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/go_openoffice/doinst.sh')
-rw-r--r-- | office/go_openoffice/doinst.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/office/go_openoffice/doinst.sh b/office/go_openoffice/doinst.sh new file mode 100644 index 0000000000..cb5584b311 --- /dev/null +++ b/office/go_openoffice/doinst.sh @@ -0,0 +1,29 @@ +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/bash_completion.d/go_ooffice.sh.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/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 + |