declare runtime prereqs
[p5sagit/Sub-Name.git] / Makefile.PL
1 use 5.006;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5     NAME            => 'Sub::Name',
6     VERSION_FROM    => 'lib/Sub/Name.pm',
7     ABSTRACT_FROM   => 'lib/Sub/Name.pm',
8     AUTHOR          => 'Matthijs van Duin <xmath@cpan.org>',
9
10     PREREQ_PM       => {
11         'Exporter' => '0',
12         'DynaLoader' => '0',
13     },
14
15     MIN_PERL_VERSION => '5.006',
16     META_MERGE => {
17         'meta-spec' => { version => 2 },
18         dynamic_config => 0,
19         resources => {
20             repository => {
21                 url => 'https://github.com/karenetheridge/Sub-Name.git',
22                 web => 'https://github.com/karenetheridge/Sub-Name',
23                 type => 'git',
24             },
25             bugtracker => {
26                 mailto => 'bug-Sub-Name@rt.cpan.org',
27                 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name',
28             },
29         },
30     },
31 );
32
33 package MY;
34 sub depend { "
35 README : \$(VERSION_FROM)
36         pod2text \$(VERSION_FROM) > README"
37 }