-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBuild.PL
More file actions
31 lines (30 loc) · 759 Bytes
/
Build.PL
File metadata and controls
31 lines (30 loc) · 759 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
use Module::Build;
use strict;
my $build = Module::Build->new(
create_makefile_pl => 'traditional',
license => 'perl',
module_name => 'Net::DAV::Server',
requires => {
'Carp' => 0,
'DBD::SQLite' => 0,
'DBI' => 0,
'Digest::SHA1' => 0,
'Encode' => 0,
'File::Find::Rule::Filesys::Virtual' => 0,
'File::Slurp' => 0,
'File::Spec' => 0,
'File::Temp' => 0,
'HTTP::Date' => 0,
'HTTP::Headers' => 0,
'HTTP::Request' => 0,
'HTTP::Response' => 0,
'Test::More' => 0,
'URI' => 0,
'URI::Escape' => 0,
'XML::LibXML' => 1.62,
},
build_requires => {
'IO::Scalar' => 0,
},
);
$build->create_build_script;