X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=Makefile.PL;h=c0bb712932762d691a1c061fc93844ce53eb8971;hb=fbe3bb7a58f45c2ce7b8b7a607ee1b53ee1049ea;hp=494f2c704d6c245656a690fd4a5c0dd79859be29;hpb=c37cbd2873181dda78c8fabf284e016b78ef0e20;p=term-progressbar.git diff --git a/Makefile.PL b/Makefile.PL index 494f2c7..c0bb712 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,13 +5,18 @@ use warnings; use ExtUtils::MakeMaker; WriteMakefile ( - NAME => 'Term-ProgressBar', + NAME => 'Term::ProgressBar', VERSION_FROM => 'lib/Term/ProgressBar.pm', - AUTHOR => 'Martyn J. Pearce ', -# ABSTRACT => 'provide a progress meter on a standard terminal', + ABSTRACT_FROM => 'lib/Term/ProgressBar.pm', + AUTHOR => 'Martyn J. Pearce', + LICENSE => 'perl', PREREQ_PM => { - 'Class::MethodMaker' => '1.02', - 'Term::ReadKey' => '2.14', + 'Class::MethodMaker' => '1.02', + 'Term::ReadKey' => '2.14', + + 'Carp' => 0, + 'Fatal' => 0, + 'POSIX' => 0, }, BUILD_REQUIRES => { 'Capture::Tiny' => '0.13', @@ -19,4 +24,9 @@ WriteMakefile ( 'Test::Exception' => '0.31', 'File::Temp' => 0, }, + META_MERGE => { + resources => { + repository => 'https://github.com/szabgab/Term-ProgressBar', + }, + }, );