-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
35 lines (33 loc) · 1.19 KB
/
Build.PL
File metadata and controls
35 lines (33 loc) · 1.19 KB
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
34
use strict;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Catalyst::Authentication::Store::UserXML',
license => 'perl',
requires => {
'Catalyst::Plugin::Authentication' => 0,
'Catalyst::Authentication::User' => 0,
'XML::LibXML' => '0',
'Moose' => '0',
'Path::Class' => '0.26', # spew()
'Authen::Passphrase' => '0',
'Authen::Passphrase::BlowfishCrypt' => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Differences' => 0,
'File::Temp' => 0,
'Path::Class' => 0.26,
},
configure_requires => { 'Module::Build' => 0 },
dist_author => 'Jozef Kutej <jkutej@cpan.org>',
create_readme => 1,
add_to_cleanup => [ 'Catalyst-Authentication-Store-UserXML-*' ],
meta_merge => {
resources => {
repository => 'http://github.com/jozef/Catalyst-Authentication-Store-UserXML',
bugtracker => 'http://github.com/jozef/Catalyst-Authentication-Store-UserXML/issues',
},
keywords => [ qw/ catalyst store xml folder / ],
},
);
$build->create_build_script;