PKGBUILDs/community/ghc/ghc.install

13 lines
415 B
Plaintext
Raw Normal View History

2016-01-18 03:44:05 +00:00
pre_upgrade() {
2017-09-21 18:27:29 +00:00
if [[ ${1%-*} != ${2%-*} ]]; then
[[ -d /usr/share/haskell ]] && find /usr/share/haskell -maxdepth 2 -name 'unregister.sh' -exec {} \;
fi
2016-01-18 03:44:05 +00:00
}
post_upgrade() {
2017-09-21 18:27:29 +00:00
if [[ ${1%-*} != ${2%-*} ]]; then
2018-10-19 02:44:02 +00:00
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."
2017-09-21 18:27:29 +00:00
fi
2016-01-18 03:44:05 +00:00
}