vp-build/srcpkgs/perl-XML-SAX/INSTALL

14 lines
280 B
Plaintext

#
# This script registers the SAX parser into the registry.
#
case "${ACTION}" in
pre)
;;
post)
LC_ALL=C perl -MXML::SAX -e \
"XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()" \
2>&1 >/dev/null
[ $? -eq 0 ] && echo "Added parser to XML::SAX registry."
;;
esac