2011-10-10 02:06:48 +08:00
|
|
|
HS_DIR=/usr/share/haskell/haskell-binary
|
2011-01-30 00:34:09 +08:00
|
|
|
post_install() {
|
|
|
|
${HS_DIR}/register.sh
|
2011-10-10 02:06:48 +08:00
|
|
|
(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
|
2011-01-30 00:34:09 +08:00
|
|
|
}
|
|
|
|
pre_upgrade() {
|
|
|
|
${HS_DIR}/unregister.sh
|
|
|
|
}
|
|
|
|
post_upgrade() {
|
|
|
|
${HS_DIR}/register.sh
|
2011-10-10 02:06:48 +08:00
|
|
|
(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
|
2011-01-30 00:34:09 +08:00
|
|
|
}
|
|
|
|
pre_remove() {
|
|
|
|
${HS_DIR}/unregister.sh
|
|
|
|
}
|
|
|
|
post_remove() {
|
2011-10-10 02:06:48 +08:00
|
|
|
(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
|
2011-01-30 00:34:09 +08:00
|
|
|
}
|
2011-10-10 02:06:48 +08:00
|
|
|
op=$1
|
|
|
|
shift
|
|
|
|
$op $*
|