Skip to content

Commit

Permalink
Cleaned up, adding missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cosimo committed Sep 18, 2011
1 parent ee860ad commit 2620d6b
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Makefile.PL
Expand Up @@ -7,14 +7,19 @@ 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 ],
'dist' => {
COMPRESS => 'gzip -9f --best',
SUFFIX => '.gz',
#PREOP => 'bin/dist'
},
'EXE_FILES' => [ map {"bin/$_"} @programs_to_install ],
'PREREQ_PM' => {
'LWP' => 5.48,
'Scalar::Util' => 0,
'Time::Local' => 0,
'URI' => 0,
'URI::Escape' => 0,
'XML::DOM' => 0,
},
);

0 comments on commit 2620d6b

Please sign in to comment.