File: Makefile.PL

package info (click to toggle)
libschedule-cron-perl 0.99-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 180 kB
  • ctags: 27
  • sloc: perl: 1,455; makefile: 15
file content (15 lines) | stat: -rw-r--r-- 481 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
WriteMakefile
  (
   NO_META => 1,
   NAME => "Schedule::Cron",
   VERSION_FROM => "lib/Schedule/Cron.pm",
   ($] >= 5.005
    ? (ABSTRACT   => 'Cron-like scheduler for Perl subroutines',
         AUTHOR     => 'Roland Huss (roland@cpan.org)')
    : ()),
   ($ExtUtils::MakeMaker::VERSION >= 6.3002 ?
    ('LICENSE'		=> 'perl', ) : ()),
   PREREQ_PM => { "Time::ParseDate" => '99.00',"Data::Dumper" => 0},
   'dist' => {COMPRESS=>'gzip',SUFFIX=>'gz'}
  );