declare repository and bugtracker info in metadata
[p5sagit/lib-with-preamble.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'lib-with-preamble',
9   VERSION_FROM => 'lib/lib/with/preamble.pm',
10   PM_FILTER => 'perl my/filter',
11   PREREQ_PM => {
12     'PerlIO::via::dynamic' => '0.02',
13     'File::Spec' => '0',
14   },
15   META_MERGE => {
16     'meta-spec' => { version => 2 },
17     dynamic_config => 0,
18
19     resources => {
20       # r/w: p5sagit@git.shadowcat.co.uk:lib-with-preamble.git
21       repository => {
22         url => 'git://git.shadowcat.co.uk/p5sagit/lib-with-preamble.git',
23         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/lib-with-preamble.git',
24         type => 'git',
25       },
26       bugtracker => {
27           mailto => 'bug-lib-with-preamble@rt.cpan.org',
28           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=lib-with-preamble',
29       },
30     },
31   },
32
33 );