Initial commit
[webservice-vichan.git] / Makefile.PL
CommitLineData
b1833b67
MG
1use 5.014000;
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
5 NAME => 'WebService::Vichan',
6 VERSION_FROM => 'lib/WebService/Vichan.pm',
7 ABSTRACT_FROM => 'lib/WebService/Vichan.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 SIGN => 1,
12 PREREQ_PM => {
13 qw/Hash::Inflator 0
14 JSON::MaybeXS 0
15
16 IO::Socket::SSL 1.56
17 Mozilla::CA 0
18 Net::SSLeay 1.49/,
19 },
20 TEST_REQUIRES => {
21 qw/Test::RequiresInternet 0/,
22 },
23 META_ADD => {
24 dynamic_config => 0,
25 resources => {
26 repository => 'https://git.ieval.ro/?p=webservice-vichan.git',
27 },
28 }
29);
This page took 0.010353 seconds and 4 git commands to generate.