-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
33 lines (31 loc) · 1.23 KB
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Catalyst::Plugin::I18N::DBI',
license => 'perl',
dist_author => 'Matthias Dietrich <[email protected]>',
dist_version_from => 'lib/Catalyst/Plugin/I18N/DBI.pm',
build_requires => {
'Locale::Maketext::Lexicon::DBI' => 0,
'Locale::Maketext' => 0,
'DBI' => 0,
'Moose::Role' => 0,
'I18N::LangTags' => 0,
'I18N::LangTags::Detect' => 0,
'Test::More' => 0,
'version' => 0,
'Task::Weaken' => 0,
},
configure_requires => { 'Module::Build' => 0.36 },
add_to_cleanup => ['Catalyst-Plugin-I18N-DBI-*'],
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
repository => 'git://github.com/rainboxx/Catalyst-Plugin-I18N-DBI.git',
homepage => 'http://github.com/rainboxx/Catalyst-Plugin-I18N-DBI/',
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Plugin-I18N-DBI',
}
},
);
$builder->create_build_script();