~ubuntu-branches/ubuntu/hoary/bc/hoary

« back to all changes in this revision

Viewing changes to debian/bc.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2002-04-13 11:33:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020413113349-13xjv23rme03ctut
Tags: 1.06-8
* debian/control: Priority changed to standard as per overrides file
* debian/control: Standards-Version upgraded to 3.5.0
* debian/copyright: Debian/GNU Linux typo fix (lintian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This is the postinst script for the Debian GNU/Linux bc package
 
4
#
 
5
# Written by Dirk Eddelbuettel <edd@debian.org>   
 
6
# Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
 
7
 
 
8
set -e
 
9
 
 
10
#DEBHELPER#
 
11
 
 
12
case "$1" in
 
13
    configure)
 
14
#       if [ -x /usr/bin/update-menus ]
 
15
#       then
 
16
#           update-menus 
 
17
#       fi
 
18
        ;;
 
19
    abort-upgrade|abort-remove|abort-deconfigure)
 
20
        ;;
 
21
    *)
 
22
        echo "postinst called with unknown argument \`$1'" >&2
 
23
        ;;
 
24
esac
 
25
 
 
26
 
 
27
 
 
28