bump version number
[p5sagit/App-FatPacker.git] / Makefile.PL
CommitLineData
9a61995c 1use strict;
2use warnings FATAL => 'all';
003ad545 3use ExtUtils::MakeMaker;
9a61995c 4
003ad545 5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
9a61995c 6
003ad545 7WriteMakefile(
8 NAME => 'App::FatPacker',
9 VERSION_FROM => 'lib/App/FatPacker.pm',
9a61995c 10
31f779e8 11 EXE_FILES => [
12 'bin/fatpack',
13 ],
14
bf195515 15 META_MERGE => {
3cc17a9e 16 'meta-spec' => { version => '2' },
003ad545 17 resources => {
18 # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
f2af37cd 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 },
003ad545 28 },
bf195515 29 requires => {
4bc06d35 30 # B::perlstring was added in 5.8.0
24402a94 31 perl => '5.008000',
bf195515 32 },
003ad545 33 },
25ed6597 34);