#!/usr/bin/perl
{
WriteMakefile(
NAME
=>
'XML::Parser::Wrapper'
,
DISTNAME
=>
'XML-Parser-Wrapper'
,
VERSION_FROM
=>
'lib/XML/Parser/Wrapper.pm'
,
ABSTRACT
=>
'Simple object wrapper around XML::Parser'
,
AUTHOR
=>
'DON OWENS <don@regexguy.com>'
,
PM
=> {
'lib/XML/Parser/Wrapper.pm'
=>
'$(INST_LIBDIR)/Wrapper.pm'
,
'lib/XML/Parser/Wrapper/SAXHandler.pm'
=>
'$(INST_LIBDIR)/Wrapper/SAXHandler.pm'
,
},
dist
=> {
COMPRESS
=>
'gzip -9f'
,
SUFFIX
=>
'gz'
,
ZIP
=>
'/usr/bin/zip'
,
ZIPFLAGS
=>
'-rl'
,
},
DIR
=> [],
EXE_FILES
=> [],
PREREQ_PM
=> {
'XML::Parser'
=> 0 },
);
}
exit
0;