File: libxml-libxml-perl.postinst

package info (click to toggle)
libxml-libxml-perl 1.70.ds-1%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 1,992 kB
  • ctags: 1,726
  • sloc: perl: 4,521; ansic: 3,583; xml: 177; sh: 62; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
## ----------------------------------------------------------------------
## debian/postinst : postinstallation script for libxml-libxml-perl
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
set -e

## ----------------------------------------------------------------------
if [ "$1" = "configure" ]; then
    update-perl-sax-parsers --add XML::LibXML::SAX::Parser
    update-perl-sax-parsers --add XML::LibXML::SAX
    update-perl-sax-parsers --update
fi

## ----------------------------------------------------------------------
## automatically generated debhelper commands
#DEBHELPER#

exit 0

## ----------------------------------------------------------------------