-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.PL
32 lines (31 loc) · 1004 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
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::DAVTalk',
AUTHOR => q{Bron Gondwana <[email protected]>},
VERSION_FROM => 'lib/Net/DAVTalk.pm',
ABSTRACT_FROM => 'lib/Net/DAVTalk.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'HTTP::Tiny' => '0.016',
'Tie::DataUUID' => '1.02',
'URI' => '1.60',
'XML::Fast' => '0.11',
'XML::Spice' => '0.03',
'JSON' => 0,
'JSON::XS' => 0,
'DateTime::Format::ISO8601' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-DAVTalk-*' },
);