-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBuild.PL
54 lines (50 loc) · 1.01 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
use lib './b';
require ModuleBuildZoid;
require File::Spec;
my $build = ModuleBuildZoid->new(
module_name => 'Zoidberg',
dist_author => 'Joel Berger <[email protected]>',
license => 'perl',
requires => {
'File::Spec' => 0,
'Exporter::Tidy' => 0,
'Encode' => 0,
'POSIX' => 0,
'File::Glob' => 0,
'Data::Dumper' => 0,
'Env' => 0,
'Cwd' => 0,
'File::ShareDir' => 0,
'Scalar::Util' => 0,
'Pod::Usage' => 0,
'perl' => '5.6.2',
},
recommends => {
'Term::ReadLine::Zoid' => 0,
'Env::PS1' => 0,
},
configure_requires => {
'Module::Build' => '0.28',
},
build_requires => {
'Module::Build' => '0.28',
'Data::Dumper' => '0',
'Pod::Text' => 0,
'Test::More' => 0,
},
dynamic_config => 1,
PL_files => {}, # make it ignore my own stuff in ./b/
share_dir => 'share',
meta_merge => {
resources => {
repository => "http://github.com/jberger/Zoidberg",
},
no_index => {
file => [ qw{
b/ModuleBuildZoid.pm
} ],
},
},
);
$build->MyInit;
$build->create_build_script;