mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
12 lines
373 B
Text
12 lines
373 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 '==> All cabalized packages need to be reinstalled now.'
|
|
echo '==> See /usr/share/haskell/ for a tentative list of affected packages.'
|
|
fi
|
|
}
|