File: prerm

package info (click to toggle)
gbatnav 0.74.0-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,584 kB
  • ctags: 698
  • sloc: ansic: 6,333; sh: 4,996; makefile: 363; sed: 93
file content (24 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/sh
# postrm script for gbatnav
#
# see: dh_installdeb(1)

set -e

case "$1" in
       purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

        ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 0

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#