this test also requires perlcc to run
[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     BUILD_REQUIRES  => {
15         'Devel::CheckBin' => '0',
16         'Test::More' => '0',
17     },
18
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         },
34     },
35 );
36
37 package MY;
38 sub depend { "
39 README : \$(VERSION_FROM)
40         pod2text \$(VERSION_FROM) > README"
41 }