Fixed case where no uuid module found so that it dies with error, not with method...
[dbsrgits/DBIx-Class-UUIDColumns.git] / Build.PL
CommitLineData
bce2eb4d 1use strict;
2use Module::Build;
3
4my %arguments = (
5 create_makefile_pl => 'passthrough',
6 license => 'perl',
773544fd 7 module_name => 'DBIx::Class::UUIDColumns',
bce2eb4d 8 requires => {
773544fd 9 'DBIx::Class' => 0.06002,
bce2eb4d 10 },
11 build_requires => {
12 'DBD::SQLite' => 1.11,
aaeaf963 13 'SQL::Translator' => 0.07
bce2eb4d 14 },
15 recommends => {
16 'Data::UUID' => 0,
773544fd 17 'APR::UUID' => 0,
18 'UUID' => 0,
19 'Win32::Guidgen' => 0,
20 'Win32API::GUID' => 0,
bce2eb4d 21 },
22 create_makefile_pl => 'passthrough',
23 create_readme => 1,
aaeaf963 24 test_files => [ glob('t/*.t')],
25 add_to_cleanup => ['t/var/*']
bce2eb4d 26);
27
28Module::Build->new(%arguments)->create_build_script;
29