summarylogtreecommitdiffstats
path: root/peazip.install
blob: 5576d72ee4854982b956730d1f345f885df39ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
post_install() {
    ln -sf "/opt/peazip/peazip" "/usr/bin/peazip"
    update-desktop-database -q
}

post_package() {
    post_install
}

post_upgrade() {
    post_install
}

postmove() {
    post_install
}

post_remove() {
    rm -f /usr/bin/peazip
    update-desktop-database -q
}