summaryrefslogtreecommitdiffstats
path: root/misc/bundle/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'misc/bundle/Makefile.PL')
-rw-r--r--misc/bundle/Makefile.PL30
1 files changed, 30 insertions, 0 deletions
diff --git a/misc/bundle/Makefile.PL b/misc/bundle/Makefile.PL
new file mode 100644
index 0000000..4c24a7e
--- /dev/null
+++ b/misc/bundle/Makefile.PL
@@ -0,0 +1,30 @@
+use 5.6.0;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Bundle::W3C::Validator',
+ ABSTRACT_FROM => 'lib/Bundle/W3C/Validator.pm',
+ AUTHOR => 'The W3C Markup Validator Team <www-validator@w3.org>',
+ VERSION_FROM => 'lib/Bundle/W3C/Validator.pm',
+ PREREQ_PM => {
+ CGI => 2.81,
+ Config::General => 0,
+ HTML::Parser => 3.25,
+ LWP::UserAgent => 1.90,
+ Net::IP => 0,
+ Set::IntSpan => 0,
+ Text::Iconv => 0,
+ URI => 0,
+ },
+ dist => { TARFLAGS => '--owner=0 --group=0 -cvf' },
+ clean => { FILES => 'ChangeLog.bak' },
+);
+
+sub MY::postamble {
+ return <<'MAKE_FRAG';
+changelog:
+ cvs2cl --FSF --utc --prune \
+ --ignore ChangeLog --ignore cvsignore --ignore SIGNATURE \
+ --ignore Makefile.PL --ignore META.yml --ignore MANIFEST
+MAKE_FRAG
+}