Update Changes
[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/LWP::Online 0/,
14 },
15 SIGN => 1,
16 PREREQ_PM => {
17 qw/Getopt::Long 0
18 HTML::TreeBuilder 0
19 LWP::UserAgent 0/
20 },
21 META_ADD => {
22 dynamic_config => 0,
23 resources => {
24 repository => 'http://git.ieval.ro/?p=www-offliberty.git',
25 },
26 }
27 );
This page took 0.023039 seconds and 4 git commands to generate.