prepare for 0.08 release
[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
c258c98a 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 },
68104426 25 },
16c23894 26);
1b5160ba 27
28package MY;
29sub depend { "
30README : \$(VERSION_FROM)
31 pod2text \$(VERSION_FROM) > README"
32}