forked from karpet/net-ldap-server-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
49 lines (44 loc) · 1.48 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
43
44
45
46
47
48
49
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $MM_Version = $ExtUtils::MakeMaker::VERSION;
if ( $MM_Version =~ /_/ ) # dev version
{
$MM_Version = eval $MM_Version;
die $@ if ($@);
}
WriteMakefile(
NAME => 'Net::LDAP::Server::Test',
AUTHOR => 'Peter Karman <[email protected]>',
VERSION_FROM => 'lib/Net/LDAP/Server/Test.pm',
ABSTRACT_FROM => 'lib/Net/LDAP/Server/Test.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'IO::Socket' => 0,
'IO::Select' => 0,
'Net::LDAP::Server' => '0.3',
'Net::LDAP' => 0,
'Data::Dump' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-LDAP-Server-Test-*' },
( $MM_Version >= 6.48 ? ( MIN_PERL_VERSION => '5.8.3' ) : () ),
( $MM_Version >= 6.31 ? ( LICENSE => 'perl' ) : () ),
( $MM_Version <= 6.44 ? ()
:
(
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
homepage =>
'https://github.com/karpet/net-ldap-server-test',
bugtracker =>
'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-Server-Test',
repository =>
'[email protected]:karpet/net-ldap-server-test.git',
},
}
)
),
);