forked from simoncozens/Net-DomainRegistration-Simple
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
24 lines (23 loc) · 772 Bytes
/
Makefile.PL
File metadata and controls
24 lines (23 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::DomainRegistration::Simple',
AUTHOR => q{Simon Cozens <simon@cpan.org>},
VERSION_FROM => 'lib/Net/DomainRegistration/Simple.pm',
ABSTRACT_FROM => 'lib/Net/DomainRegistration/Simple.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'Perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Carp' => 0,
'Net::EPP' => 0,
'Time::Piece' => 0,
'Time::Seconds' => 0,
'Test::More' => 0,
'Socket' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-DomainRegistration-Simple-*' },
);