-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.PL
33 lines (29 loc) · 875 Bytes
/
Makefile.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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
my @programs_to_install = qw(dave);
WriteMakefile(
'NAME' => 'HTTP::DAV',
'VERSION_FROM' => 'lib/HTTP/DAV.pm',
'dist' => {
COMPRESS => 'gzip -9f --best',
SUFFIX => '.gz',
#PREOP => 'bin/dist'
},
'EXE_FILES' => [ map {"bin/$_"} @programs_to_install ],
'PREREQ_PM' => {
'Cwd' => 0,
'File::Temp' => 0,
'LWP' => 5.48,
'Scalar::Util' => 0,
'Time::Local' => 0,
'URI' => 0,
'URI::Escape' => 0,
'XML::DOM' => 0,
# bin/dave specific dependencies
'Getopt::Long' => 0,
'Term::ReadLine' => 0,
'Text::ParseWords' => 0,
'Pod::Usage' => 0,
},
);