X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=94be937452d0b6be08bcd9d33a5a4ea3470a4507;hb=HEAD;hp=c40c1042a50d1d4ebdf5f9b80a70f2fc32aef965;hpb=e39c6deaa670109633f9ccf63b7e2eaf9c252ec9;p=dbsrgits%2FDBIx-Class-Journal.git diff --git a/Makefile.PL b/Makefile.PL index c40c104..94be937 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,10 +1,27 @@ -use ExtUtils::MakeMaker; - -WriteMakefile( - NAME => 'DBIx::Class::Journal', - VERSION_FROM => 'lib/DBIx/Class/Journal.pm', - PREREQ_PM => { 'DBIx::Class' => 0.08, - 'DBD::SQLite' => 0.12, - 'Test::TempDir' => 0.04, - }, -); +use inc::Module::Install 0.89; +use strict; +use warnings; + +use 5.008001; + +# ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ****** + +name 'DBIx-Class-Journal'; +perl_version '5.008001'; +all_from 'lib/DBIx/Class/Journal.pm'; + + +test_requires 'Test::More' => '0.94'; +test_requires 'DBD::SQLite' => '1.29'; +test_requires 'SQL::Translator' => '0.11003'; # we'll make this optional for release + +requires 'DBIx::Class' => '0.08115'; +requires 'Class::C3::Componentised' => '1.0006'; + +tests_recursive ('t'); + +resources 'license' => 'http://dev.perl.org/licenses/'; +resources 'repository' => 'http://github.com/dbsrgits/DBIx-Class-Journal'; + +WriteAll(); +