/usr/local/CPAN/Parallel-Depend/Makefile.PL
use v5.10;
use ExtUtils::MakeMaker;
WriteMakefile
(
NAME => "Parallel::Depend",
# Note: this will usually go up with the version
# of Parallel::Depend but may change due to
# documentation or ::Util updates.
VERSION => '4.10',
ABSTRACT => <<'END',
Parallel process startup with dependencies and restart.
Manager object can dispatch perl methods or functions,
shell, or code blocks from the schedule and use running
jobs to generate and schedule new ones.
END
AUTHOR => 'Steven Lembark <lembark@wrkhors.com>',
PREREQ_PM =>
{
# core modules: whatever came with perl
# should be usable
autodie => 0,
strict => 0,
subs => 0,
vars => 0,
Benchmark => 0,
Carp => 0,
Cwd => 0,
Data::Dumper => 0,
Date::Format => 0,
File::Basename => 0,
File::Spec::Functions => 0,
FindBin => 0,
IO::File => 0,
List::Util => 0,
Scalar::Util => 0,
Storable => 0,
Symbol => 0,
# these aren't core, the versions matter.
# MIME is requird for the nastygram
# handler in ::Util.
MIME::Lite => 3.0,
},
);