summarylogtreecommitdiffstats
path: root/freedink-dfarc.install
blob: a0a17a5e1c835f921d2daa49adf3976bb90426d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
post_install() {

if [ -x /usr/bin/update-desktop-database ]; then
	/usr/bin/update-desktop-database &> /dev/null
fi

if [ -x /usr/bin/gtk-update-icon-cache ]; then
	/usr/bin/gtk-update-icon-cache --quiet /usr/share/icons/hicolor || :
fi

update-mime-database /usr/share/mime >/dev/null 2>&1
  
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}