-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
32 lines (28 loc) · 898 Bytes
/
Build.PL
File metadata and controls
32 lines (28 loc) · 898 Bytes
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
#!perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Codebits::API',
dist_version => '0.01',
dist_author => 'Sérgio Bernardino <[email protected]>',
dist_abstract => 'Codebits API implementation.',
license => 'perl',
requires => {
'perl' => '5.10.1',
'autodie' => 2,
'JSON' => 0,
'Moose' => 1,
'LWP' => 1,
'Crypt::SSLeay' => 0.5,
'Email::Valid' => 0.1,
'Regexp::Common' => 1,
'namespace::autoclean' => 0,
'LWP::Protocol::https' => 1,
'URI::Escape' => 3,
},
build_requires => { 'Test::More' => 0 },
configure_requires => { 'Module::Build' => 0 },
add_to_cleanup => [ 'Codebits-*', '*META.*' ],
);
$build->create_build_script;