version 0.09
[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 },
c44463c5 14 BUILD_REQUIRES => {
15 'Devel::CheckBin' => '0',
16 'Test::More' => '0',
17 },
22fe73ba 18
c258c98a 19 MIN_PERL_VERSION => '5.006',
20 META_MERGE => {
21 'meta-spec' => { version => 2 },
22 dynamic_config => 0,
23 resources => {
24 repository => {
25 url => 'https://github.com/karenetheridge/Sub-Name.git',
26 web => 'https://github.com/karenetheridge/Sub-Name',
27 type => 'git',
28 },
29 bugtracker => {
30 mailto => 'bug-Sub-Name@rt.cpan.org',
31 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name',
32 },
33 },
68104426 34 },
16c23894 35);
1b5160ba 36
37package MY;
38sub depend { "
39README : \$(VERSION_FROM)
40 pod2text \$(VERSION_FROM) > README"
41}