'file' command now moves shebang line and prints script content
[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 => {
003ad545 16 resources => {
17 # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
18 repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git",
19 homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
20 },
bf195515 21 requires => {
24402a94 22 perl => '5.008000',
bf195515 23 },
003ad545 24 },
25ed6597 25);