-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·32 lines (31 loc) · 941 Bytes
/
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
32
#!perl
use ExtUtils::MakeMaker;
use strict;
WriteMakefile(
'NAME' => 'Net::EPP',
'VERSION_FROM' => 'lib/Net/EPP.pm',
'ABSTRACT_FROM' => 'lib/Net/EPP.pm',
'AUTHOR' => ['Gavin Brown <gavin.brown@fastmail.uk>'],
'LICENSE' => 'perl',
'PREREQ_PM' => {
'Digest::SHA' => 0,
'IO::Socket::SSL' => 0,
'IO::Socket::IP' => 0,
'List::Util' => 0,
'Time::HiRes' => 0,
'XML::LibXML' => 0,
},
'META_MERGE' => {
'meta-spec' => {'version' => 2},
'resources' => {
'repository' => {
'type' => 'git',
'url' => 'https://github.com/gbxyz/perl-net-epp.git',
'web' => 'https://github.com/gbxyz/perl-net-epp',
},
'bugtracker' => {
'web' => 'https://github.com/gbxyz/perl-net-epp/issues',
},
},
},
);