~ubuntu-branches/ubuntu/utopic/libxml-sax-perl/utopic

« back to all changes in this revision

Viewing changes to examples/libxml-foo-perl.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Jay Bonci
  • Date: 2004-03-15 14:47:44 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040315144744-aktwkv3j1lqg5chp
Tags: 0.12-4
* New Maintainer (Closes: #210543)
* Updated policy-version to 3.6.1.0 (No other changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
## ----------------------------------------------------------------------
 
3
## debian/postinst : postinstallation script for libxml-foo-perl
 
4
## ----------------------------------------------------------------------
 
5
 
 
6
## ----------------------------------------------------------------------
 
7
set -e
 
8
 
 
9
## ----------------------------------------------------------------------
 
10
if [ "$1" = configure ]
 
11
then
 
12
    update-perl-sax-parsers --add XML::FOO
 
13
    update-perl-sax-parsers --update
 
14
fi
 
15
 
 
16
## ---------------------------------------------------------------------- 
 
17
## automatically generated debhelper commands
 
18
#DEBHELPER#
 
19
 
 
20
exit 0
 
21
 
 
22
## ----------------------------------------------------------------------