Bumping version to 0.010005
[p5sagit/App-FatPacker.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 use 5.008000;
6
7 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
8
9 WriteMakefile(
10   NAME => 'App::FatPacker',
11   VERSION_FROM => 'lib/App/FatPacker.pm',
12
13   EXE_FILES => [
14     'bin/fatpack',
15   ],
16
17   META_MERGE => {
18     'meta-spec' => { version => '2' },
19     dynamic_config => 0,
20     x_static_install => 1,
21     resources => {
22       # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
23       repository => {
24         url => 'git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git',
25         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
26         type => 'git',
27       },
28       bugtracker => {
29           mailto => 'bug-App-FatPacker-Metadata@rt.cpan.org',
30           web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-FatPacker',
31       },
32     },
33     prereqs => {
34       runtime => {
35         requires => {
36           # B::perlstring was added in B 1.01 (perl 5.8.0)
37           perl => '5.008000',
38           'B' => '1.01',
39           'Cwd' => '0',
40           'File::Copy' => '0',
41           'File::Find' => '0',
42           'File::Path' => '0',
43           'File::Spec::Functions' => '0',
44           'File::Spec::Unix' => '0',
45           'Getopt::Long' => '0',
46         },
47       },
48       test => {
49         requires => {
50           'File::Basename' => '0',
51           'File::Spec' => '0',
52           'File::Temp' => '0',
53           'Test::More' => '0.82',
54         },
55       },
56     },
57   },
58 );