add a Makefile.PL and a MANIFEST.SKIP
[dbsrgits/DBIx-Class-Schema-ResultSetAccessors.git] / Makefile.PL
index e69de29..1ba13dd 100644 (file)
@@ -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;