-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
42 lines (41 loc) · 1.35 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- cperl -*-
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Module::Metadata;
WriteMakefile(NAME => 'App::Regather',
ABSTRACT => 'regather - LDAP syncrepl consumer script to perform actions desired on syncrepl event',
VERSION_FROM => 'lib/App/Regather.pm',
EXE_FILES => [ 'regather' ],
AUTHOR => 'Zeus Panchenko <[email protected]>',
LICENSE => 'gpl_3',
MIN_PERL_VERSION => 5.016001,
PREREQ_PM =>
{
'Config::AST' => '1.05',
'Config::Parser' => '1.04',
'Config::Parser::ldap' => '1.00',
'Data::Printer' => '0.38',
'File::Temp' => '0.22',
'Mail::RFC822::Address' => '0.3',
'Mail::Send' => '0.80',
'Net::DNS' => '1.15',
'Net::LDAP' => '0.65',
'Sys::Syslog' => '0.29',
'Template' => '2.29',
'Text::Locus' => '1.01',
},
META_MERGE =>
{
'meta-spec' => { version => 2 },
resources =>
{
repository =>
{
type => 'git',
url => 'ssh://[email protected]:z-eos/regather.git',
web => 'https://github.com/z-eos/regather.git',
},
},
}
);