declare runtime prereqs
[p5sagit/Sub-Name.git] / Makefile.PL
CommitLineData
16c23894 1use 5.006;
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
c258c98a 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>',
68104426 9
22fe73ba 10 PREREQ_PM => {
11 'Exporter' => '0',
12 'DynaLoader' => '0',
13 },
14
c258c98a 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 },
68104426 30 },
16c23894 31);
1b5160ba 32
33package MY;
34sub depend { "
35README : \$(VERSION_FROM)
36 pod2text \$(VERSION_FROM) > README"
37}