summarylogtreecommitdiffstats
path: root/photivo.install
blob: a742032e8fc090ea6292b770ea70a53a4783ef5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

post_install() {
  echo "updating desktop mime database..."
  update-desktop-database -q
  update-mime-database usr/share/mime > /dev/null 2>&1
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}

op=$1
shift
$op $*
# vim: ft=sh