summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-06-13 17:03:46 +0200
committerfranck cuny <franck@lumberjaph.net>2011-06-13 17:03:46 +0200
commitd7f32ed04f2ff236e84e0b2d06b78757d2276b06 (patch)
tree7275b3067c111f0f0daffa6df4660fc7eb7aac35
parentremove absolute url (diff)
downloadstargit-d7f32ed04f2ff236e84e0b2d06b78757d2276b06.tar.gz
makefile
Signed-off-by: franck cuny <franck@lumberjaph.net>
-rw-r--r--Makefile.PL40
1 files changed, 24 insertions, 16 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 727c28f..f357e6f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,22 +3,30 @@ use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
- NAME => 'StarGit',
- AUTHOR => q{franck cuny <franck@lumberjaph.net>},
- VERSION_FROM => 'lib/StarGit.pm',
- ABSTRACT => 'Explore your GitHub galaxy',
- ($ExtUtils::MakeMaker::VERSION >= 6.3002
- ? ('LICENSE'=> 'perl')
- : ()),
- PL_FILES => {},
+ NAME => 'StarGit',
+ AUTHOR => q{franck cuny <franck@lumberjaph.net>},
+ VERSION_FROM => 'lib/StarGit.pm',
+ ABSTRACT => 'Explore your GitHub galaxy',
+ ( $ExtUtils::MakeMaker::VERSION >= 6.3002
+ ? ( 'LICENSE' => 'perl' )
+ : () ),
+ PL_FILES => {},
PREREQ_PM => {
- 'Test::More' => 0,
- 'YAML' => 0,
- 'Dancer' => 1.3051,
- 'Plack' => 0.9974,
- 'MongoDB' => 0.43,
- 'Template' => 0,
+ 'Test::More' => 0,
+ 'YAML' => 0,
+ 'Dancer' => 1.3051,
+ 'Plack' => 0.9974,
+ 'MongoDB' => 0.43,
+ 'Template' => 0,
+ 'Moose' => 2.0007,
+ 'MooseX::App::Cmd' => 0.06,
+ 'Try::Tiny' => 0.09,
+ 'JSON' => 2.53,
+ 'DateTime' => 0.70,
+ 'MooseX::ConfigFromFile' => 0.03,
+ 'Log::Dispatchouli' => 2.005,
+ 'Net::HTTP::Spore' => 0,
},
- dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
- clean => { FILES => 'StarGit-*' },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'StarGit-*' },
);