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

« back to all changes in this revision

Viewing changes to debian/postinst

  • 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
    configure|abort-upgrade|abort-deconfigure|abort-remove)
 
7
        /usr/lib/emacsen-common/emacs-package-install $PACKAGE
 
8
        ;;
 
9
    *)
 
10
        echo "postinst called with unknown argument \`$1'" >&2
 
11
    ;;
 
12
esac
 
13
 
 
14
exit 0
 
15
 
 
16
### Local Variables:
 
17
### mode: shell-script
 
18
### End: