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