~ubuntu-branches/ubuntu/trusty/apoo/trusty

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Rogerio Reis
  • Date: 2004-06-04 16:17:54 UTC
  • Revision ID: james.westby@ubuntu.com-20040604161754-au0vxj962xj5ots2
Tags: 1.1-6
Bug fix: "build error without failure, missing build-dep", thanks to
Frank Lichtenheld (Closes: #250210).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# prerm script for apoo
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <prerm> `remove'
 
10
#        * <old-prerm> `upgrade' <new-version>
 
11
#        * <new-prerm> `failed-upgrade' <old-version>
 
12
#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
 
13
#        * <deconfigured's-prerm> `deconfigure' `in-favour'
 
14
#          <package-being-installed> <version> `removing'
 
15
#          <conflicting-package> <version>
 
16
# for details, see http://www.debian.org/doc/debian-policy/ or
 
17
# the debian-policy package
 
18
 
 
19
 
 
20
case "$1" in
 
21
    remove|upgrade|deconfigure)
 
22
        ;;
 
23
    failed-upgrade)
 
24
        ;;
 
25
    *)
 
26
        echo "prerm called with unknown argument \`$1'" >&2
 
27
        exit 1
 
28
    ;;
 
29
esac
 
30
 
 
31
# dh_installdeb will replace this with shell code automatically
 
32
# generated by other debhelper scripts.
 
33
 
 
34
#DEBHELPER#
 
35
 
 
36
exit 0
 
37
 
 
38