df5ea62bf5
Pkgsrc changes: - Added support for installation to DESTDIR. - Registration of the parser happens through the pkginstall framework (INSTALL/DEINSTALL) now, thus making the MESSAGE file unnecessary. Setting SKIP_SAX_INSTALL in the environment and replacing PERL5_INSTALLVENDORLIB in the install scripts is necessary for this to work. Changes since version 1.62: ============================== 1.63 - added no_network parser flag - added support for exclusive canonicalization (http://www.w3.org/TR/xml-exc-c14n/) - make XInclude reflect parser flags - documentation fixes - better namespace reconciliation implemented by Tim Brody - $doc->toString always returns octets - $doc->actualEncoding returns UTF8 if no document encoding is declared (unlike $doc->getEncoding, which returns undef)
12 lines
377 B
Text
12 lines
377 B
Text
# $NetBSD: INSTALL,v 1.1 2007/06/13 23:29:00 heinz Exp $
|
|
|
|
case ${STAGE} in
|
|
|
|
POST-INSTALL)
|
|
${PERL5} -I@PERL5_INSTALLVENDORLIB@ -MXML::SAX -e "XML::SAX->add_parser(q(XML::LibXML::SAX::Parser))->save_parsers()"
|
|
${PERL5} -I@PERL5_INSTALLVENDORLIB@ -MXML::SAX -e "XML::SAX->add_parser(q(XML::LibXML::SAX))->save_parsers()"
|
|
${ECHO} "Added parser to XML::SAX registry."
|
|
;;
|
|
|
|
esac
|
|
|