/[MARC-Fast]/trunk/Makefile.PL
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 39 - (show annotations)
Thu Sep 23 12:55:35 2010 UTC (13 years, 6 months ago) by dpavlin
File MIME type: text/plain
File size: 776 byte(s)
move Fast.pm into lib/MARC/Fast.pm
1 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 => 'lib/MARC/Fast.pm', # finds $VERSION
7 AUTHOR => 'Dobrica Pavlinusic (dpavlin@rot13.org)',
8 ABSTRACT => '',
9 PREREQ_PM => {
10 'Test::Simple' => 0.44,
11 'Data::Dump' => 0,
12 'Carp' => 0,
13 },
14 );
15
16 sub MY::postamble {
17 return <<'MAKE_MORE';
18
19 changelog:
20 svk update && svk log -v > Changes
21
22 cpan:
23 make clean
24 rm -f MARC-Fast-*.tar.gz
25 perl Makefile.PL
26 make changelog
27 make dist
28 make disttest
29 @echo
30 @echo -n "Upload" MARC-Fast-*.tar.gz "to CPAN? [y/N]:"
31 @read upload && test "$$upload" == "y" && cpan-upload -verbose MARC-Fast-*.tar.gz
32
33 MAKE_MORE
34 }

  ViewVC Help
Powered by ViewVC 1.1.26