summarylogtreecommitdiffstats
path: root/podpisuj.install
blob: b8819619787122e8fc74730f61cb74c7c04209ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {
  xdg-desktop-menu install /opt/podpisuj/lib/podpisuj-Podpisuj.desktop
  xdg-mime install /opt/podpisuj/lib/podpisuj-Podpisuj-MimeInfo.xml
  update-desktop-database /usr/share/applications >/dev/null 2>&1 || true
  update-mime-database /usr/share/mime >/dev/null 2>&1 || true
}

post_upgrade() {
  post_install
}

pre_remove() {
  xdg-desktop-menu uninstall /opt/podpisuj/lib/podpisuj-Podpisuj.desktop
  xdg-mime uninstall /opt/podpisuj/lib/podpisuj-Podpisuj-MimeInfo.xml
  update-desktop-database /usr/share/applications >/dev/null 2>&1 || true
  update-mime-database /usr/share/mime >/dev/null 2>&1 || true
}

post_remove() {
  update-desktop-database /usr/share/applications >/dev/null 2>&1 || true
  update-mime-database /usr/share/mime >/dev/null 2>&1 || true
}