Added POD section about known issues
[p5sagit/App-FatPacker.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'App::FatPacker',
9   VERSION_FROM => 'lib/App/FatPacker.pm',
10
11   EXE_FILES => [
12     'bin/fatpack',
13   ],
14
15   META_MERGE => {
16     'meta-spec' => { version => '2' },
17     dynamic_config => 0,
18     resources => {
19       # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
20       repository => {
21         url => 'git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git',
22         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
23         type => 'git',
24       },
25       bugtracker => {
26           mailto => 'bug-App-FatPacker-Metadata@rt.cpan.org',
27           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-FatPacker',
28       },
29     },
30     requires => {
31         # B::perlstring was added in B 1.01 (perl 5.8.0)
32         perl => '5.008000',
33     },
34   },
35 );