Fix leak when setting a fully-qualified name
[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   MIN_PERL_VERSION => '5.006',
11   META_MERGE => {
12     'meta-spec' => { version => 2 },
13     dynamic_config => 0,
14     resources => {
15       repository => {
16         url => 'https://github.com/karenetheridge/Sub-Name.git',
17         web => 'https://github.com/karenetheridge/Sub-Name',
18         type => 'git',
19       },
20       bugtracker => {
21         mailto => 'bug-Sub-Name@rt.cpan.org',
22         web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name',
23       },
24     },
25   },
26 );
27
28 package MY;
29 sub depend { "
30 README : \$(VERSION_FROM)
31         pod2text \$(VERSION_FROM) > README"
32 }