Initial commit.

This commit is contained in:
Jens Luedicke
2010-08-20 00:15:21 +02:00
commit 485e8a111d
6 changed files with 490 additions and 0 deletions

14
Makefile.PL Normal file
View File

@@ -0,0 +1,14 @@
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'File::DirWalk',
'VERSION_FROM' => 'DirWalk.pm',
'PREREQ_PM' => {
'File::Basename' => 0,
'File::Spec' => 0,
},
($] >= 5.005
? (AUTHOR => 'Jens Luedicke <jensl@cpan.org>')
: ()
),
);