perl/modules/W3C/XHTML/HTMLCompatChecker Makefile.PL,NONE,1.1 Build.PL,1.3,NONE

Update of /sources/public/perl/modules/W3C/XHTML/HTMLCompatChecker
In directory hutz:/tmp/cvs-serv11686

Added Files:
	Makefile.PL 
Removed Files:
	Build.PL 
Log Message:
Module::Build tampers with the scripts (trying to be helpful and messing with shebang lines) - and I can't find anywhere in the doc how to disable that fix_shebang_line routine. ExtUtils::MakeMaker will do just fine...

--- Build.PL DELETED ---

--- NEW FILE: Makefile.PL ---
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
use ExtUtils::MakeMaker;

use Config;
use English;

# We needed perl >= 5.6.0 (use warnings...) but trying to do without
#use 5.006;

WriteMakefile(
    'NAME'              => 'W3C::XHTML::HTMLCompatChecker',
    'DISTNAME'          => 'W3C-XHTML-HTMLCompatChecker',
    'AUTHOR'            => 'the QA-dev tool development team at W3C http://www.w3.org/QA/Tools/qa-dev/',
    'ABSTRACT'		=> 'HTML Compatibility Checker for XHTML (aka Appendix C checker)',
    'VERSION'      	=> '0.01', 
    'PREREQ_PM'         => { 
'Exporter'       => 0,
 "XML::Parser" => 0,
 "CGI" => 0,
 "LWP::Simple" => 0,
 "URI" => 0,
 "CGI::Carp" => 0,
                           },
    'EXE_FILES'         => [ 'bin/appCcheck.pl' ],
    'dist'              => { COMPRESS => 'gzip -9f', SUFFIX => '.gz' },
);

Received on Friday, 22 September 2006 07:07:52 UTC