-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
51 lines (44 loc) · 1.21 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
use strict;
use Module::Build;
my $filename = "t/SKIPXPATH";
eval { require XML::XPath; };
if ($@) {
open( F, ">$filename" ) or die "Can't create $filename";
close F;
print <<EOT
XML::XPath is not installed. This means that you will not be able to
access the full functionality of this module. However should you install
XML::XPath at a later date this functionality will become available
EOT
} else {
unlink $filename;
}
$filename = "t/SKIPWITHOUT";
eval { require Test::Without::Module; };
if ($@) {
open( F, ">$filename" ) or die "Can't create $filename";
close F;
} else {
unlink $filename;
}
$filename = "t/SKIPWARN";
eval { require Test::Warn; };
if ($@) {
open( F, ">$filename" ) or die "Can't create $filename";
close F;
} else {
unlink $filename;
}
Module::Build
->new(
module_name => "WebService::Validator::HTML::W3C",
license => 'perl',
requires => {
'Class::Accessor' => 0,
'LWP' => '0',
},
build_requires => {
'Test::More' => 0,
},
)
->create_build_script;