X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=5089f55c32a2e8653763ca57c16d55c99f539c33;hb=3c5fd9cb51be006ce4d34248cd43367339ad646f;hp=263bfc18ffffdb1bcc9eb649b34be6589f731962;hpb=98277fa537fe2441d8f3439d48861387d4acfc12;p=dbsrgits%2FDBIx-Class-Tree.git diff --git a/Makefile.PL b/Makefile.PL index 263bfc1..5089f55 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,13 +1,20 @@ use inc::Module::Install; +BEGIN { + if ($Module::Install::AUTHOR) { + require Module::Install::ReadmeFromPod; + } +} + name 'DBIx-Class-Tree'; +perl_version '5.008001'; all_from 'lib/DBIx/Class/Tree.pm'; -readme_from 'lib/DBIx/Class/Tree.pm'; -githubmeta; +readme_from 'lib/DBIx/Class/Tree.pm'; + +resources 'repository' => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class-Tree.git'; -requires 'Carp' => 0; requires 'DBIx::Class' => '0.08100'; -build_requires 'DBD::SQLite' => '0.42'; +test_requires 'Test::Exception'; WriteAll;