--- trunk/Makefile.PL 2004/08/28 14:37:13 13 +++ trunk/Makefile.PL 2004/08/28 15:19:22 14 @@ -1,11 +1,16 @@ -use 5.008004; +use 5.005; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'jsFind', VERSION_FROM => 'jsFind.pm', # finds $VERSION - PREREQ_PM => {}, # e.g., Module::Name => 1.1 + PREREQ_PM => { + 'Carp' => 0, + 'File::Path' => 0, + 'HTML::Entities' => 0, + 'Text::Iconv' => 0, + }, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'jsFind.pm', # retrieve abstract from module AUTHOR => 'Dobrica Pavlinusic ') : ()), @@ -27,5 +32,9 @@ html: blib/lib/jsFind.pm all pod2html blib/lib/jsFind.pm jsFind.html +clean :: + rm tree.* words.* + cd html && rm -Rf entities entities-utf8/ lorem/ words/ + MAKE_MORE }