desktop/lazarus/lazarus.install

29 lines
348 B
Plaintext
Raw Normal View History

2014-04-09 06:54:13 +08:00
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
}