forked from brong/Net-CalDAVTalk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
34 lines (33 loc) · 1008 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
33
34
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::CalDAVTalk',
AUTHOR => q{Bron Gondwana <brong@cpan.org>},
VERSION_FROM => 'lib/Net/CalDAVTalk.pm',
ABSTRACT_FROM => 'lib/Net/CalDAVTalk.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'Net::DAVTalk' => '0.02',
'DateTime::TimeZone' => 0,
'Data::ICal::TimeZone' => '1.23',
'DateTime::Format::ISO8601' => '0.08',
'DateTime::Format::ICal' => '0.09',
'Text::LevenshteinXS' => '0.03',
'Text::VCardFast' => '0.06',
'JSON' => 0,
'JSON::XS' => 0,
'MIME::Types' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-CalDAVTalk-*' },
);