~ubuntu-branches/ubuntu/wily/crypt++el/wily

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2001-11-20 13:51:33 UTC
  • Revision ID: james.westby@ubuntu.com-20011120135133-3s7pxzy8ecnf1t2j
Tags: 2.91-1
* New upstream
* fixes handling for gpg sub library (closes: #105427)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash -e
 
2
 
 
3
PACKAGE=crypt++el
 
4
 
 
5
case "$1" in
 
6
    remove|upgrade|deconfigure)
 
7
        /usr/lib/emacsen-common/emacs-package-remove $PACKAGE
 
8
    ;;
 
9
    failed-upgrade)
 
10
        :
 
11
    ;;
 
12
    *)
 
13
        echo "prerm called with unknown argument \`$1'" >&2
 
14
    ;;
 
15
esac
 
16
 
 
17
exit 0
 
18
 
 
19
### Local Variables:
 
20
### mode: shell-script
 
21
### End: