~ubuntu-branches/ubuntu/quantal/genometools/quantal-backports

« back to all changes in this revision

Viewing changes to debian/libgenometools0.postrm

  • Committer: Package Import Robot
  • Author(s): Sascha Steinbiss
  • Date: 2012-07-09 14:10:23 UTC
  • Revision ID: package-import@ubuntu.com-20120709141023-7nomj0v4le7izeju
Tags: 1.4.1-1
* Initial release (Closes: #657923)
* the GFF3 parser now handles children which are defined before their parents
* many small improvements to the GFF3 parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for #PACKAGE#
 
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' <overwriter>
 
17
#          <overwriter-version>
 
18
# for details, see http://www.debian.org/doc/debian-policy/ or
 
19
# the debian-policy package
 
20
 
 
21
 
 
22
case "$1" in
 
23
    purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
 
24
    ;;
 
25
    
 
26
    remove)
 
27
      ldconfig
 
28
    ;;
 
29
 
 
30
    *)
 
31
        echo "postrm called with unknown argument \`$1'" >&2
 
32
        exit 1
 
33
    ;;
 
34
esac
 
35
 
 
36
#DEBHELPER#
 
37
 
 
38
exit 0