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