use strict; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'DBIx::Class', 'VERSION_FROM' => 'lib/DBIx/Class.pm', # finds $VERSION 'PREREQ_PM' => { 'Data::Page' => 2.00, 'Scalar::Util' => 0, 'SQL::Abstract' => 1.20, 'SQL::Abstract::Limit' => 0.101, 'Class::C3' => 0.11, 'Storable' => 0, 'Class::Data::Accessor' => 0.01, 'Carp::Clan' => 0, 'DBI' => 1.40, # Required for build 'DBD::SQLite' => 1.11, # Recommended 'Data::UUID' => 0, 'Module::Find' => 0, 'Class::Inspector' => 0, }, # e.g., Module::Name => 1.1 ); 1;