summaryrefslogtreecommitdiff
path: root/community-testing/haskell-binary/haskell-binary.install
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/haskell-binary/haskell-binary.install')
-rw-r--r--community-testing/haskell-binary/haskell-binary.install24
1 files changed, 24 insertions, 0 deletions
diff --git a/community-testing/haskell-binary/haskell-binary.install b/community-testing/haskell-binary/haskell-binary.install
new file mode 100644
index 000000000..844b8a67c
--- /dev/null
+++ b/community-testing/haskell-binary/haskell-binary.install
@@ -0,0 +1,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: