File: Makefile.PL

package info (click to toggle)
libnet-ping-external-perl 0.13-1
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd, squeeze, wheezy
  • size: 104 kB
  • ctags: 20
  • sloc: perl: 254; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 536 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'		=> 'Net::Ping::External',
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'External.pm', # retrieve abstract from module
       AUTHOR     => 'Alexandr Ciornii <alexchorny@'.'gmail.com>') : ()),
    'VERSION_FROM'	=> 'External.pm', # finds $VERSION
    ($ExtUtils::MakeMaker::VERSION ge '6.31'? 
     ('LICENSE'		=> 'perl', ) : ()),
    'PREREQ_PM'		=> {
      Socket => 0,
      Carp => 0,
#      perl => '5.4',
    },
);