RT#87352: fix .packlist path abs2rel
[p5sagit/App-FatPacker.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'App::FatPacker',
9   VERSION_FROM => 'lib/App/FatPacker.pm',
10
11   EXE_FILES => [
12     'bin/fatpack',
13   ],
14
15   META_MERGE => {
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     },
21     requires => {
22         perl => '5.008000',
23     },
24   },
25 );