-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBuild.PL
58 lines (45 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/perl -w
use 5.008_008;
use strict;
use lib 'inc';
use MyBuilder;
my $builder = MyBuilder->new(
module_name => 'Object::ID',
license => 'perl',
dist_author => 'Michael G Schwern <schwern@pobox.com>',
no_index => {
package => [
"UNIVERSAL"
],
},
meta_merge => {
resources => {
repository =>
'http://github.com/schwern/Object-ID',
},
keywords => [ 'id', 'identifier', 'universal', 'object' ],
configure_requires => {
'Module::Build' => '0.340201' # what shipped with 5.10.1
},
},
build_requires => {
'Test::More' => '0.88', # for done_testing
version => '0.77',
},
requires => {
perl => '5.8.8',
"Sub::Name" => '0.03',
'Hash::FieldHash' => '0.10',
},
auto_features => {
object_uuid => {
description => "Unique object idenifier using UUIDs",
requires => {
"Data::UUID" => 1.148
}
}
},
create_license => 1,
create_readme => 1,
);
$builder->create_build_script();