X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=1c9b5649e2cf967709d2ff8197ef9bf37ff74d1a;hb=bc77ff45fe40b52d43d7c2c3a5c80b061efdfbbb;hp=f5673772a81b990e95c294ba73906657b5e32284;hpb=1404e8595030cfbf1224787906eaba2029749ff0;p=catagits%2FCatalyst-Authentication-Store-LDAP.git diff --git a/Makefile.PL b/Makefile.PL index f567377..1c9b564 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use inc::Module::Install; +use inc::Module::Install 0.87; name('Catalyst-Authentication-Store-LDAP'); abstract('Authenticate Users against LDAP Directories'); @@ -10,10 +10,17 @@ requires('Net::LDAP'); requires( 'Catalyst::Plugin::Authentication' => '0.10003' ); #requires('Catalyst::Model::LDAP'); -build_requires('Net::LDAP::Server::Test' => '0.03'); +build_requires('Net::LDAP::Server::Test' => '0.07'); build_requires('Test::More'); +build_requires('Test::MockObject'); +build_requires('Test::Exception'); -auto_install(); +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Store-LDAP/trunk/'; -&WriteAll; +if ($Module::Install::AUTHOR) { + system("pod2text lib/Catalyst/Authentication/Store/LDAP.pm > README") + and die $!; +} + +WriteAll;