summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: d0660f9f79af8d9203a88a2b97f1c3995c03bf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'		=> 'Sys::Hostname::Long',
    'VERSION_FROM'	=> 'lib/Sys/Hostname/Long.pm',
    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'lib/Sys/Hostname/Long.pm', # retrieve abstract from module
       AUTHOR     => 'Scott Penrose <scott@cpan.org>') : ()),
    'LICENSE'   => 'perl',
    'META_MERGE' => {
        resources => {
            repository => 'https://github.com/scottp/sys-hostname-long/',
        },
    },
);