-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
29 lines (28 loc) · 935 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::DSLProvider',
AUTHOR => q{Jason Clifford <[email protected]>, Simon Cozens <[email protected]>},
VERSION_FROM => 'lib/Net/DSLProvider.pm',
ABSTRACT_FROM => 'lib/Net/DSLProvider.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Class::Accessor' => 0,
'SOAP::Lite' => 0,
'HTML::Entities' => 0,
'LWP' => 0,
'HTTP::Cookies' => 0,
'HTML::Entities' => 0,
'XML::Simple' => 0,
'Time::Piece' => 0,
'Time::Seconds' => 0,
'Date::Holidays::EnglandWales' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-DSLProvider-*' },
);