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
## ----------------------------------------------------------------------
|