summaryrefslogtreecommitdiff
path: root/community-testing/haskell-binary/haskell-binary.install
blob: 844b8a67cef9238f91ea42f4e7ad26f310e1a5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
HS_DIR=usr/share/haskell/haskell-binary

pre_upgrade() {
  ${HS_DIR}/unregister.sh
}

post_remove() {
  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
}

post_upgrade() {
  ${HS_DIR}/register.sh
  post_remove
}

post_install() {
  post_upgrade
}

pre_remove() {
  pre_upgrade
}

# vim:set ts=2 sw=2 et: