summarylogtreecommitdiffstats
path: root/ducklauncher.install
blob: 341861b17ec16f4361e1b2fdb4279682513288e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_install() {
  /usr/bin/python2.7 -m compileall /usr/lib/duck_launcher
  update-desktop-database -q
}

pre_upgrade() {
  find "/usr/lib/duck_launcher" -type f -iname "*.pyc" -exec rm {} \;
}

post_upgrade() {
  post_install
}

pre_remove() {
  pre_upgrade
}

post_remove() {
  update-desktop-database -q
}