From: Karen Etheridge Date: Mon, 24 Sep 2012 21:55:38 +0000 (-0700) Subject: RT#79835: install bin/fatpack into $PATH X-Git-Tag: v0.009011~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FApp-FatPacker.git;a=commitdiff_plain;h=31f779e8f565f175cd634ea5d5e7bd0943fda2cb RT#79835: install bin/fatpack into $PATH --- diff --git a/Changes b/Changes index d9c2379..de5d50e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for App-FatPacker + - RT #79835: install bin/fatpack (lost in 0.009009 in the + Module::Install -> Distar conversion) + 0.009010 - 2012-09-19 - enable temp file deletion in pack.t on Win32 - RT #79489: %fatpacked keys need to be unix paths diff --git a/Makefile.PL b/Makefile.PL index 0a91c74..440dc37 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,10 @@ WriteMakefile( NAME => 'App::FatPacker', VERSION_FROM => 'lib/App/FatPacker.pm', + EXE_FILES => [ + 'bin/fatpack', + ], + META_ADD => { resources => { # r/w: p5sagit@git.shadowcat.co.uk:App-FatPacker.git diff --git a/lib/App/FatPacker.pm b/lib/App/FatPacker.pm index 6f7a76b..ced6545 100644 --- a/lib/App/FatPacker.pm +++ b/lib/App/FatPacker.pm @@ -14,7 +14,7 @@ use File::Copy qw(copy); use File::Path qw(mkpath rmtree); use B qw(perlstring); -our $VERSION = '0.009010'; # 0.9.10 +our $VERSION = '0.009011'; # 0.9.11 $VERSION = eval $VERSION;