Line # Revision Author
1 1 dpavlin use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4 WriteMakefile(
5 NAME => 'MARC::Fast',
6 VERSION_FROM => 'Fast.pm', # finds $VERSION
7 AUTHOR => 'Dobrica Pavlinusic (dpavlin@rot13.org)',
8 ABSTRACT => '',
9 PREREQ_PM => {
10 'Test::Simple' => 0.44,
11 'Test::Exception' => 0,
12 26 dpavlin 'Data::Dump' => 0,
13 1 dpavlin 'Carp' => 0,
14 },
15 );
16 12 dpavlin
17 sub MY::postamble {
18 return <<'MAKE_MORE';
19
20 changelog:
21 27 dpavlin svk update && svk log -v > Changes
22 12 dpavlin
23 cpan:
24 make clean
25 rm -f MARC-Fast-*.tar.gz
26 perl Makefile.PL
27 make changelog
28 make dist
29 make disttest
30 @echo
31 @echo -n "Upload" MARC-Fast-*.tar.gz "to CPAN? [y/N]:"
32 @read upload && test "$$upload" == "y" && cpan-upload -verbose MARC-Fast-*.tar.gz
33
34 MAKE_MORE
35 }