~ubuntu-branches/ubuntu/gutsy/dvipost/gutsy

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Per Olofsson, Per Olofsson, Sven Hoexter
  • Date: 2006-06-21 22:49:06 UTC
  • Revision ID: james.westby@ubuntu.com-20060621224906-o0hu60oasm4nsn39
Tags: 1.1-2
[ Per Olofsson ]
* Removed initial "A" from short description.
* Added myself to uploaders

[ Sven Hoexter ]        
* Cleaned up the rules file.
* Modified the post* scripts so that we only run texhash when required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
case "$1" in
 
4
    configure)
 
5
     texhash
 
6
    ;;
 
7
 
 
8
    abort-upgrade|abort-remove|abort-deconfigure)
 
9
 
 
10
    ;;
 
11
 
 
12
    *)
 
13
        echo "postinst called with unknown argument \`$1'" >&2
 
14
        exit 1
 
15
    ;;
 
16
esac
 
17
 
 
18
#DEBHELPER#