mirror of
https://github.com/archlinux/aur.git
synced 2026-03-07 11:29:22 +01:00
24 lines
451 B
Text
24 lines
451 B
Text
pkgname=mbox-tools
|
|
HS_DIR=usr/share/haskell/${pkgname}
|
|
|
|
post_install() {
|
|
${HS_DIR}/register.sh
|
|
(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
|
|
}
|
|
|
|
pre_upgrade() {
|
|
${HS_DIR}/unregister.sh
|
|
}
|
|
|
|
post_upgrade() {
|
|
${HS_DIR}/register.sh
|
|
(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
|
|
}
|
|
|
|
pre_remove() {
|
|
${HS_DIR}/unregister.sh
|
|
}
|
|
|
|
post_remove() {
|
|
(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
|
|
}
|