Initial commit
[app-zealc.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'App::Zealc',
6 VERSION_FROM => 'lib/App/Zealc.pm',
7 ABSTRACT_FROM => 'lib/App/Zealc.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/Encode 0
14 File::Spec::Functions 0
15 File::Temp 0
16
17 App::Cmd 0
18 Class::Accessor::Fast 0
19 Class::Method::Modifiers 0
20 Config::Auto 0
21 File::Slurp 0
22 File::Which 0
23 HTML::FormatText 0
24 IO::Prompter 0
25 Pod::Simple::Methody 0
26 Term::ANSIColor 0
27 Term::FormatColumns 0
28 Term::Pager 0
29 Text::Wrap 0
30 Zeal 0
31 Zeal::Feed 0/,
32 },
33 META_MERGE => {
34 dynamic_config => 0,
35 resources => {
36 repository => 'https://git.ieval.ro/?p=app-zealc.git',
37 }
38 }
39 );
This page took 0.021498 seconds and 4 git commands to generate.