summaryrefslogtreecommitdiff
path: root/community/rawtherapee/rawtherapee.install
blob: 6a18adf6ea24e28554985edfeef75a95d6c90645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
  echo "update desktop mime database..."
  update-desktop-database -q
  update-mime-database usr/share/mime 1>&2 > /dev/null
  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}


# vim:set ts=2 sw=2 et: