X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=2ab62b9f285812c86793618c4513cd009583dabf;hb=2c3ad870fd6a88f5824d4b2c5a63f87c2af1c005;hp=629829c045d258c2a9f42d2170f1c032f7305033;hpb=701da8c4d6f0b78ffc015085aa410a6cacfcdb40;p=dbsrgits%2FDBIx-Class.git diff --git a/Build.PL b/Build.PL index 629829c..2ab62b9 100644 --- a/Build.PL +++ b/Build.PL @@ -7,28 +7,24 @@ my %arguments = ( module_name => 'DBIx::Class', requires => { 'Data::Page' => 2.00, - 'DBI' => 1.40, - 'UNIVERSAL::require' => 0, 'Scalar::Util' => 0, 'SQL::Abstract' => 1.20, 'SQL::Abstract::Limit' => 0.101, - 'DBD::SQLite' => 1.08, - 'Class::C3' => 0.07, - 'Tie::IxHash' => 0, - 'Module::Find' => 0, + 'Class::C3' => 0.11, 'Storable' => 0, 'Class::Data::Accessor' => 0.01, - # Following for CDBICompat only - 'Class::Trigger' => 0, - 'DBIx::ContextualFetch' => 0, - 'Carp::Clan' => 0, + 'Carp::Clan' => 0, + 'DBI' => 1.40, + 'Module::Find' => 0, + 'Class::Inspector' => 0, }, - recommends => { - 'Data::UUID' => 0, + build_requires => { + 'DBD::SQLite' => 1.11, }, create_makefile_pl => 'passthrough', create_readme => 1, - test_files => [ glob('t/*.t'), glob('t/*/*.t') ] + test_files => [ glob('t/*.t'), glob('t/*/*.t') ], + script_files => [ glob('script/*') ], ); Module::Build->new(%arguments)->create_build_script;