X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=411587b9b8e3e5c0c7ea91005c6c299aa5a51331;hb=HEAD;hp=54ebb06a377703cdc1368690be5841912232133d;hpb=f66d606b37d8742dc27ce3216c84223302f60250;p=catagits%2FCatalyst-Authentication-Store-LDAP.git diff --git a/Makefile.PL b/Makefile.PL index 54ebb06..411587b 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'); @@ -7,13 +7,21 @@ version_from('lib/Catalyst/Authentication/Store/LDAP.pm'); license('perl'); requires('Net::LDAP'); +requires( 'Class::Accessor::Fast' => '0.50' ); requires( 'Catalyst::Plugin::Authentication' => '0.10003' ); #requires('Catalyst::Model::LDAP'); -build_requires('Net::LDAP::Server::Test' => '0.02'); -build_requires('Test::More'); +build_requires('Net::LDAP::Server::Test' => '0.07'); +build_requires('Test::More', '0.88'); +build_requires('Test::MockObject'); +build_requires('Test::Exception'); -auto_install(); +resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Authentication-Store-LDAP.git'; -&WriteAll; +if ($Module::Install::AUTHOR) { + system("pod2text lib/Catalyst/Authentication/Store/LDAP.pm > README") + and die $!; +} + +WriteAll;