diff options
Diffstat (limited to 'audio/last.fm/doinst.sh')
-rw-r--r-- | audio/last.fm/doinst.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/audio/last.fm/doinst.sh b/audio/last.fm/doinst.sh index 22d4849bce..1f8ff67ded 100644 --- a/audio/last.fm/doinst.sh +++ b/audio/last.fm/doinst.sh @@ -1,5 +1,10 @@ +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-desktop-database ]; then - usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1 +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 |