X-Git-Url: http://git.rot13.org/?p=MARC-Fast;a=blobdiff_plain;f=Makefile.PL;h=55a62da18ec5958ee924abad04ed7813b0f0435d;hp=e5b691a756f080e7f5dc4165a96d8ae475e93eff;hb=a1d1939c89e83f096a59468d10bf1b5eb2214403;hpb=5c5233ec1192462b4f0e5d30ba274f1b09cc69fc diff --git a/Makefile.PL b/Makefile.PL index e5b691a..55a62da 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,3 +12,23 @@ WriteMakefile( 'Carp' => 0, }, ); + +sub MY::postamble { + return <<'MAKE_MORE'; + +changelog: + svn update && svn -v log > 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 +}