~ubuntu-branches/debian/sid/r5rs-doc/sid

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Chris Hanson
  • Date: 2002-03-24 09:00:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020324090015-0honsponvqdxu1bs
Tags: 20010328-5
Add build-depends on tetex-extra to get pdflatex files.
(closes: Bug#139650)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for r5rs-doc
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <postrm> `remove'
 
10
#        * <postrm> `purge'
 
11
#        * <old-postrm> `upgrade' <new-version>
 
12
#        * <new-postrm> `failed-upgrade' <old-version>
 
13
#        * <new-postrm> `abort-install'
 
14
#        * <new-postrm> `abort-install' <old-version>
 
15
#        * <new-postrm> `abort-upgrade' <old-version>
 
16
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
 
17
# for details, see /usr/share/doc/packaging-manual/
 
18
 
 
19
case "$1" in
 
20
    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
21
        ;;
 
22
    *)
 
23
        echo "postrm called with unknown argument \`$1'" >&2
 
24
        exit 1
 
25
        ;;
 
26
esac
 
27
 
 
28
# dh_installdeb will replace this with shell code automatically
 
29
# generated by other debhelper scripts.
 
30
 
 
31
#DEBHELPER#
 
32
 
 
33
exit 0