Config-Universal

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

#!/usr/bin/perl
use ExtUtils::MakeMaker;

# Write the makefile
WriteMakefile(
    'NAME'      => 'Config::Universal',
    'VERSION_FROM' => 'lib/Config/Universal.pm', # finds $VERSION

    'PREREQ_PM' => { 
         XML::DOM   => undef,
         HTTP::Response => undef,
         HTTP::Request::Common => undef,
         LWP::UserAgent => undef,
       },
    'dist'      => { COMPRESS => "gzip -9f" },
  ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
        (ABSTRACT_FROM => 'lib/Config/Universal.pm',
         AUTHOR     => 'Hartmut Vogler <hartmut.vogler@T-Systems.com>') : ()),
);



( run in 1.928 second using v1.01-cache-2.11-cpan-39bf76dae61 )