Add POD encoding declaration
[p5sagit/App-FatPacker.git] / Makefile.PL
CommitLineData
9a61995c 1use strict;
2use warnings FATAL => 'all';
3use inc::Module::Install 0.93;
4
5all_from('lib/App/FatPacker.pm');
6
7install_script('bin/fatpack');
8
25ed6597 9resources(
d04938c5 10 # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git
25ed6597 11 repository => "git://git.shadowcat.co.uk/p5sagit/App-FatPacker.git",
d04938c5 12 homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/App-FatPacker.git',
25ed6597 13);
14
9a61995c 15WriteAll;