App-Git-Perl

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

#use 5.014;
use ExtUtils::MakeMaker;

WriteMakefile(
  NAME             => 'App::Git::Perl',
  VERSION_FROM     => 'script/git-perl',
  ABSTRACT_FROM    => 'lib/App/Git/Perl.pm',
  AUTHOR           => 'Nedzad Hrnjica',
  LICENSE          => 'perl',
  MIN_PERL_VERSION => '5.014',
  EXE_FILES        => ['script/git-perl'],
  (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
    'meta-spec' => { version => 2 },
     prereqs => {
       test => {
         requires => {
           'IO::Socket::SSL' => '1.42',
         },
       },
       runtime => {
         requires => {
           'IO::Socket::SSL' => '1.42',
        },
      },
    },
    resources => {
      repository => {
        type       => 'git',
        url        => 'https://github.com/nedzadhrnjica/App-Git-Perl.git',
        web        => 'https://github.com/nedzadhrnjica/App-Git-Perl',
      },
      bugtracker => {
        web        => 'https://github.com/nedzadhrnjica/App-Git-Perl/issues',
      },
    },
    provides => {
      'App::Git::Perl' => {
        file => 'lib/App/Git/Perl.pm',
        version => '0.1.18',
      }
    },
  })
  : ()
  ),
);



( run in 3.529 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )