File: libghc6-PACKAGE-doc.postrm

package info (click to toggle)
haskell-utils 1.11
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 292 kB
  • ctags: 64
  • sloc: makefile: 563; sh: 160
file content (21 lines) | stat: -rwxr-xr-x 387 bytes parent folder | download | duplicates (23)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
# Generic doc postrm script for Haskell cabal libraries v9 by Ian Lynagh.

set -e

DIR=/usr/share/doc/ghc6-doc/libraries
GEN=/usr/lib/ghc6-doc/gen_contents_index

case "$1" in
    *)
        [ -d $DIR ] && [ -e $GEN ] && cd $DIR && $GEN
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0