Version 1.017
[catagits/Catalyst-Authentication-Store-LDAP.git] / Makefile.PL
CommitLineData
6149223d 1use inc::Module::Install 0.87;
f66d606b 2
3name('Catalyst-Authentication-Store-LDAP');
4abstract('Authenticate Users against LDAP Directories');
5author('Adam Jacob <holoway@cpan.org>');
6version_from('lib/Catalyst/Authentication/Store/LDAP.pm');
7license('perl');
8
9requires('Net::LDAP');
7ab568b2 10requires( 'Class::Accessor::Fast' => '0.50' );
f66d606b 11requires( 'Catalyst::Plugin::Authentication' => '0.10003' );
12
13#requires('Catalyst::Model::LDAP');
714f0c16 14build_requires('Net::LDAP::Server::Test' => '0.07');
e385da71 15build_requires('Test::More', '0.88');
405489b5 16build_requires('Test::MockObject');
ff35d7cb 17build_requires('Test::Exception');
f66d606b 18
a6a8f29d 19resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Authentication-Store-LDAP.git';
1338323b 20
444169b0 21if ($Module::Install::AUTHOR) {
22 system("pod2text lib/Catalyst/Authentication/Store/LDAP.pm > README")
23 and die $!;
24}
25
26WriteAll;
f66d606b 27