X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=d13d28555e24c8cad0db5aeb5fabb7a9d13c7286;hb=1c33db5d0ccacdfc4d6028ec596b0f34a045471c;hp=3334b43efbcd98373554be45fbdad60556e16679;hpb=b7c3526d90d66059589c7102eb75d33e819e0dd2;p=dbsrgits%2FSQL-Abstract.git diff --git a/Makefile.PL b/Makefile.PL index 3334b43..d13d285 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,6 +13,7 @@ all_from 'lib/SQL/Abstract.pm'; requires 'List::Util' => 0; requires 'Scalar::Util' => 0; requires 'Class::Accessor::Grouped' => 0.09005; +requires 'Getopt::Long::Descriptive' => 0.086; requires 'Hash::Merge' => 0.12; test_requires "Test::More" => 0.92; @@ -24,6 +25,8 @@ test_requires "Storable" => 0; # for cloning in tests no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint'; no_index directory => 'examples'; +install_script 'format-sql'; + tests_recursive 't'; WriteAll();