X-Git-Url: http://git.rot13.org/?p=MARC-Fast;a=blobdiff_plain;f=Makefile.PL;h=a82bb28018bb8e7831184e6566481d968a0c9de7;hp=e5b691a756f080e7f5dc4165a96d8ae475e93eff;hb=da0d66efdc1d4735f05935a6300a408e7f3ac503;hpb=5c5233ec1192462b4f0e5d30ba274f1b09cc69fc diff --git a/Makefile.PL b/Makefile.PL index e5b691a..a82bb28 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,12 +3,32 @@ use ExtUtils::MakeMaker; # the contents of the Makefile that is written. WriteMakefile( NAME => 'MARC::Fast', - VERSION_FROM => 'Fast.pm', # finds $VERSION + VERSION_FROM => 'lib/MARC/Fast.pm', # finds $VERSION AUTHOR => 'Dobrica Pavlinusic (dpavlin@rot13.org)', ABSTRACT => '', PREREQ_PM => { 'Test::Simple' => 0.44, - 'Test::Exception' => 0, + 'Data::Dump' => 0, 'Carp' => 0, }, ); + +sub MY::postamble { + return <<'MAKE_MORE'; + +changelog: + svk update && svk log -v > Changes + +cpan: + make clean + rm -f MARC-Fast-*.tar.gz + perl Makefile.PL + make changelog + make dist + make disttest + @echo + @echo -n "Upload" MARC-Fast-*.tar.gz "to CPAN? [y/N]:" + @read upload && test "$$upload" == "y" && cpan-upload -verbose MARC-Fast-*.tar.gz + +MAKE_MORE +}