Commit | Line | Data |
e3dd5e89 |
1 | use 5.006; |
2 | use ExtUtils::MakeMaker; |
3 | # See lib/ExtUtils/MakeMaker.pm for details of how to influence |
4 | # the contents of the Makefile that is written. |
5 | WriteMakefile( |
96449e8e |
6 | NAME => 'SQL::Abstract', |
7 | VERSION_FROM => 'lib/SQL/Abstract.pm', # finds $VERSION |
8 | PREREQ_PM => { |
05cb369d |
9 | "List::Util" => 0, |
10 | "Scalar::Util" => 0, |
089b32ff |
11 | "Test::Builder" => 0, |
12 | "Test::More" => 0, |
13 | "Test::Exception" => 0, |
7fb57243 |
14 | "Test::Warn" => 0, |
340218d3 |
15 | "Test::Deep" => 0, |
089b32ff |
16 | "Data::Dumper" => 0, |
96449e8e |
17 | }, # e.g., Module::Name => 1.1 |
e3dd5e89 |
18 | ABSTRACT_FROM => 'lib/SQL/Abstract.pm', # retrieve abstract from module |
f36a2e14 |
19 | AUTHOR => 'Matt Trout <mst@shadowcat.co.uk>, but see the POD', |
e3dd5e89 |
20 | ); |