mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
12 lines
415 B
Text
12 lines
415 B
Text
pre_upgrade() {
|
|
if [[ ${1%-*} != ${2%-*} ]]; then
|
|
[[ -d /usr/share/haskell ]] && find /usr/share/haskell -maxdepth 2 -name 'unregister.sh' -exec {} \;
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [[ ${1%-*} != ${2%-*} ]]; then
|
|
echo '==> If you have custom packages installed, you will need to reinstall them now.'
|
|
echo "==> See /usr/lib/ghc-${2%-*}/package.conf.d/ for a tentative list of affected packages."
|
|
fi
|
|
}
|