diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-30 12:00:26 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:09 -0500 |
commit | b7511040871c0b04311af04ace08112f55de7d53 (patch) | |
tree | d0395efbfbc3ea38d4a17e2b07aa73aca5016e56 /system/cutecom/doinst.sh | |
parent | 1e1c254cd28c2843af59afbc75b89b13cf60b7d0 (diff) |
system/cutecom: Fixed (Handle desktop file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/cutecom/doinst.sh')
-rw-r--r-- | system/cutecom/doinst.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/cutecom/doinst.sh b/system/cutecom/doinst.sh new file mode 100644 index 000000000000..3e5691a052b5 --- /dev/null +++ b/system/cutecom/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 |