File: prerm

package info (click to toggle)
haskell-doc 19991028-1
  • links: PTS
  • area: main
  • in suites: potato, woody
  • size: 1,672 kB
  • ctags: 620
  • sloc: haskell: 2,123; makefile: 158; sh: 31
file content (17 lines) | stat: -rw-r--r-- 277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

package=haskell-doc

if command -v install-docs >/dev/null 2>&1; then
   install-docs -r haskell98-lang
   install-docs -r haskell98-lib
   install-docs -r haskell98-tut
fi

# FHS transition
if [ -L /usr/doc/$package ]; then
   rm -f /usr/doc/$package
fi