-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
31 lines (27 loc) · 945 Bytes
/
Copy pathBuild.PL
File metadata and controls
31 lines (27 loc) · 945 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'REST::Utils',
dist_abstract => 'Utility functions for REST applications',
dist_author => 'Jaldhar H. Vyas <jaldhar@braincells.com>',
license => 'perl',
dist_version_from => 'lib/REST/Utils.pm',
build_requires => {
'Test::More' => 0,
'Test::WWW::Mechanize::CGI' => 0,
},
requires => {
'perl' => 5.008,
},
add_to_cleanup => [ 'REST-Utils-*' ],
create_makefile_pl => 'traditional',
sign => 1,
meta_merge => {
resources => {
repository => 'http://github.com/jaldhar/REST-Utils',
homepage => 'http://jaldhar.github.com/REST-Utils',
},
},
);
$builder->create_build_script();