# $Id: Makefile.PL 38 2007-04-04 03:40:33Z itz $ use ExtUtils::MakeMaker; # this is here because otherwise Perl includes Emacs backup files (ie. *~) our %pm_hash = ('lib/Mail/Sort.pm' => '$(INST_LIB)/Mail/Sort.pm', 'lib/Mail/Sort/Dedupe.pm' => '$(INST_LIB)/Mail/Sort/Dedupe.pm', 'lib/Mail/Sort/Base.pm' => '$(INST_LIB)/Mail/Sort/Base.pm' ); WriteMakefile( NAME => 'Mail::Sort', VERSION_FROM => 'lib/Mail/Sort.pm', PREREQ_PM => { 'FileHandle' => '2.00', 'POSIX' => '1.03', 'File::Slurp' => '9999.09', 'DB_File' => '1.814', 'GDBM_File' => '1.08', 'File::Spec::Functions' => '1.3', 'File::Path' => '1.08', }, PM => \%pm_hash, MAN3PODS => {'Sort.pod' => '$(INST_MAN3DIR)/Mail::Sort.3pm'}, realclean => {FILES => '$(shell find . -name "*~" -o -name .svn)' }, );