Minor fixes in Makefile.PL
[www-offliberty.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use 5.014000;
3
4 WriteMakefile(
5 NAME => 'WWW::Offliberty',
6 VERSION_FROM => 'lib/WWW/Offliberty.pm',
7 ABSTRACT_FROM => 'lib/WWW/Offliberty.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => ['off'],
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 BUILD_REQUIRES => {
13 qw/Test::RequiresInternet 0/,
14 },
15 SIGN => 1,
16 PREREQ_PM => {
17 qw/HTML::TreeBuilder 0
18 HTTP::Tiny 0/,
19 },
20 META_ADD => {
21 dynamic_config => 0,
22 resources => {
23 repository => 'https://git.ieval.ro/?p=www-offliberty.git',
24 },
25 }
26 );
This page took 0.020981 seconds and 4 git commands to generate.