Bump version and update Changes
[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 EXE_FILES => [ 'aap-passwd' ],
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Authen::Passphrase 0
15 Authen::Passphrase::BlowfishCrypt 0
16 IO::Prompter 0
17 YAML::Any 0/,
18 },
19 META_MERGE => {
20 recommends => {
21 qw/Apache2::RequestRec 0/,
22 },
23 dynamic_config => 0,
24 resources => {
25 repository => 'https://git.ieval.ro/?p=apache2-authen-passphrase.git',
26 },
27 }
28 );
This page took 0.023005 seconds and 4 git commands to generate.