X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=1ba13ddf30265366cb2822c53f898a59a0dbb806;hb=f73cc8fe5fa9e3b553d21632dbbf00d1306d31b9;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=4799b4f3ffce87551763d5420efd24482669da34;p=dbsrgits%2FDBIx-Class-Schema-ResultSetAccessors.git diff --git a/Makefile.PL b/Makefile.PL index e69de29..1ba13dd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -0,0 +1,23 @@ +use inc::Module::Install 1.01; + +name 'DBIx-Class-Schema-ResultSetAccessors'; +perl_version 5.008001; +all_from 'lib/DBIx/Class/Schema/ResultSetAccessors.pm'; + +requires 'DBIx::Class' => 0; + +test_requires 'Test::More' => '0.94'; +test_requires 'Test::Exception'; + +if ($Module::Install::AUTHOR) { + system("pod2text lib/DBIx/Class/Schema/ResultSetAccessors.pm > README"); +} + +realclean_files 'README'; + +auto_install; + +resources repository => + 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git'; + +WriteAll;