freebsd-ports/textproc/p5-XML-LibXML/pkg-install

6 lines
228 B
Text
Raw Normal View History

2004-11-09 15:08:54 +01:00
#!/usr/bin/perl
exit unless $ARGV[1]=~ /^(DE|POST\-)INSTALL$/;
$action=(($1 eq 'DE')?'remove':'add').'_parser';
eval "use XML::SAX;"; exit(-1) if $@;
XML::SAX->$action('XML::LibXML::SAX'.$_)->save_parsers() for('::Parser', '');