changelog
[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' },
b4e84716 17 dynamic_config => 0,
003ad545 18 resources => {
19 # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
f2af37cd 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 },
003ad545 29 },
e1213c6a 30 prereqs => {
31 runtime => {
32 requires => {
33 # B::perlstring was added in B 1.01 (perl 5.8.0)
34 perl => '5.008000',
35 },
36 },
bf195515 37 },
003ad545 38 },
25ed6597 39);