File: hyperlatex.postrm

package info (click to toggle)
hyperlatex 2.9a-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 668 kB
  • ctags: 391
  • sloc: lisp: 2,680; sh: 199; makefile: 84; awk: 21
file content (29 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/sh -e

NAME=hyperlatex
PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11

case "$1" in
  remove)
    if [ -x /usr/bin/mktexlsr ]; then
      /usr/bin/mktexlsr
    fi
    ;;

  purge)
    rm -rf /etc/hyperlatex
    ;;
    
  upgrade)
    ;;

  failed-upgrade|abort-install|abort-upgrade|disappear)
    ;;

  *)
    echo "postrm called with unknown argument \`$1'" >&2
    exit 1
    ;;
esac

#DEBHELPER#