summarylogtreecommitdiffstats
path: root/pandownload-bin.install
blob: aa1176f67387564973494de3a89d766052ec31ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## arg 1:  the new package version
## arg 2:  the old package version

post_upgrade() {
  if [ $(vercmp $2 2.1.2-2) -le 0 ]; then
    cat << EOF
Please update the symbolic link.

  ln -sf /opt/pandownload/PanDownload.exe "${pd_dir}"/pandownload.exe
  ln -sf /opt/pandownload/libcurl.dll "${pd_dir}"/libcurl.dll
  ln -sf /opt/pandownload/lua53.dll "${pd_dir}"/lua53.dll
  ln -sf /opt/pandownload/wine/msscript.ocx "${pd_dir}"/wine/drive_c/windows/system32/msscript.ocx
EOF
  fi
}