1ba13ddf30265366cb2822c53f898a59a0dbb806
[dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git] / Makefile.PL
1 use inc::Module::Install 1.01;
2
3 name 'DBIx-Class-Schema-ResultSetAccessors';
4 perl_version 5.008001;
5 all_from 'lib/DBIx/Class/Schema/ResultSetAccessors.pm';
6
7 requires 'DBIx::Class' => 0;
8
9 test_requires 'Test::More' => '0.94';
10 test_requires 'Test::Exception';
11
12 if ($Module::Install::AUTHOR) {
13     system("pod2text lib/DBIx/Class/Schema/ResultSetAccessors.pm > README");
14 }
15
16 realclean_files 'README';
17
18 auto_install;
19
20 resources repository =>
21     'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git';
22
23 WriteAll;