File: Makefile.PL

package info (click to toggle)
libemail-send-io-perl 2.200-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 84 kB
  • ctags: 7
  • sloc: makefile: 44; perl: 34
file content (14 lines) | stat: -rw-r--r-- 463 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use ExtUtils::MakeMaker;

WriteMakefile (
  AUTHOR        => 'Casey West <casey@geeknest.com>',
  ABSTRACT      => "Send mail via IO::All",
  NAME          => 'Email::Send::IO',
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM     => {
    'Email::Send'           => '2.186', # IO.pm removed then
    'IO::All'               => '0.32',  # avoid some minor bugs
  },
  VERSION_FROM  => 'lib/Email/Send/IO.pm',
);