summarylogtreecommitdiffstats
path: root/pandownload-wine.install
blob: ae97ea15e6ed60d1f4f5d7d28c685807e0b62005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
info() {
    echo -e "本软件为 PanDownload 的众多修改版中的一个"
}
post_install() {
    info
}
post_upgrade() {
    echo "deleting the pandownload bottle..."
    find /home -maxdepth 2 -name ".pandownload" -exec rm -rf {} \;
    info
}
pre_remove() {
    echo "deleting the pandownload bottle..."
    find /home -maxdepth 2 -name ".pandownload" -exec rm -rf {} \;
}