bump version number
[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     resources => {
18       # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
19       repository => {
20         url => 'git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git',
21         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
22         type => 'git',
23       },
24       bugtracker => {
25           mailto => 'bug-App-FatPacker-Metadata@rt.cpan.org',
26           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-FatPacker',
27       },
28     },
29     requires => {
30         # B::perlstring was added in 5.8.0
31         perl => '5.008000',
32     },
33   },
34 );