summarylogtreecommitdiffstats
path: root/haskell-aosd.install
diff options
context:
space:
mode:
authorLeif Warner2015-06-28 21:14:54 -0700
committerLeif Warner2015-06-28 21:14:54 -0700
commit371afc06f5e8843a3647cb283930ed7285d32267 (patch)
treeb8e026efc31df685e65a34e3523c9905b2418d66 /haskell-aosd.install
downloadaur-371afc06f5e8843a3647cb283930ed7285d32267.tar.gz
Initial commit
Have submitted the patch as a PR to upstream: https://bitbucket.org/dschuessler/haskell-aosd/pull-request/1/specify-the-return-type-of-the/
Diffstat (limited to 'haskell-aosd.install')
-rw-r--r--haskell-aosd.install18
1 files changed, 18 insertions, 0 deletions
diff --git a/haskell-aosd.install b/haskell-aosd.install
new file mode 100644
index 000000000000..7583ca881559
--- /dev/null
+++ b/haskell-aosd.install
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aosd
+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)
+}