forked from jimmybergman/Net-DRI
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMakefile.PL
31 lines (30 loc) · 1.01 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::DRI',
AUTHOR => 'Patrick Mevzek <[email protected]>',
VERSION_FROM => 'lib/Net/DRI.pm',
ABSTRACT => 'Interface to Domain Name Registries/Registrars/Resellers',
PL_FILES => {},
LICENSE => 'gpl',
PREREQ_PM => {
'Carp' => 0,
'Test::More' => 0,
'DateTime' => 0,
'DateTime::Duration' => 0,
'DateTime::Format::Strptime' => 0,
'DateTime::TimeZone' => 0,
'DateTime::Format::ISO8601' => '0.06', ## version 0.0403 is also ok, version 0.05 IS NOT OK !
'Class::Accessor' => 0,
'Class::Accessor::Chained' => 0,
'Time::HiRes' => 0,
'IO::Socket::INET' => 0,
'IO::Socket::SSL' => '0.90',
'Email::Valid' => 0,
'XML::LibXML' => '1.61',
'UNIVERSAL::require' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-DRI-*' },
);