desktop/lazarus/lazarus.install

23 lines
235 B
Plaintext
Raw Normal View History

2014-04-09 06:54:13 +08:00
update_icons() {
# 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
}