desktop/lazarus/lazarus.install
2014-04-08 22:54:13 +00:00

29 lines
348 B
Plaintext

update_icons() {
# Setup Menus
if which update-desktop-database
then
update-desktop-database -q /usr/share/applications
fi
# Setup MIME types
if which update-mime-database
then
update-mime-database /usr/share/mime >/dev/null
fi
}
post_install() {
update_icons
}
post_upgrade() {
update_icons
}
post_remove() {
update_icons
}