diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-30 12:43:08 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:10 -0500 |
commit | c20711d8f80d311bc3554e4fe8b517f89a1bfeea (patch) | |
tree | 79c1f6695e359ee9e1ba164ed78c623714eeb537 /system/komparator4/doinst.sh | |
parent | 72e7eb4f27a93afce013a6ad5b21c47231f1a01d (diff) | |
download | slackbuilds-c20711d8f80d311bc3554e4fe8b517f89a1bfeea.tar.gz |
system/komparator4: Fixed (Handle desktop and icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/komparator4/doinst.sh')
-rw-r--r-- | system/komparator4/doinst.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/komparator4/doinst.sh b/system/komparator4/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/system/komparator4/doinst.sh @@ -0,0 +1,9 @@ +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 |