Update ignore props
[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');
10requires( 'Catalyst::Plugin::Authentication' => '0.10003' );
11
12#requires('Catalyst::Model::LDAP');
714f0c16 13build_requires('Net::LDAP::Server::Test' => '0.07');
f66d606b 14build_requires('Test::More');
405489b5 15build_requires('Test::MockObject');
d94851da 16build_required('Test::Exception');
f66d606b 17
1338323b 18resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Store-LDAP/trunk/';
19
444169b0 20if ($Module::Install::AUTHOR) {
21 system("pod2text lib/Catalyst/Authentication/Store/LDAP.pm > README")
22 and die $!;
23}
24
25WriteAll;
f66d606b 26