desktop/lazarus/lazarus.install
2018-12-28 15:11:52 +01:00

23 lines
235 B
Plaintext

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
}