Fix copyright and license
[apache2-authen-passphrase.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use 5.014000;
3
4 WriteMakefile(
5 NAME => 'Apache2::Authen::Passphrase',
6 VERSION_FROM => 'lib/Apache2/Authen/Passphrase.pm',
7 ABSTRACT_FROM => 'lib/Apache2/Authen/Passphrase.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 EXE_FILES => [ 'aap-passwd' ],
12 PREREQ_PM => {
13 qw/Authen::Passphrase 0
14 Authen::Passphrase::BlowfishCrypt 0
15 IO::Prompter 0
16 YAML::Any 0/,
17 },
18 META_MERGE => {
19 recommends => {
20 qw/Apache2::RequestRec 0
21 Apache2::Access 0
22 Apache2::Const 0/,
23 }
24 }
25 );
This page took 0.022826 seconds and 4 git commands to generate.