slackbuilds_ponce/system/virt-manager/doinst.sh
Robby Workman fb12e1f0dd system/virt-manager: Updated for version 0.10.0.
This almost surely still has bugs, but it's more
functional that the version we had.  Feedback is
welcome and encouraged.  Patches are even more so.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2013-11-12 01:25:04 -06:00

20 lines
610 B
Bash

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
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