File: Makefile.PL

package info (click to toggle)
libemail-mime-modifier-perl 1.442-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 88 kB
  • ctags: 18
  • sloc: perl: 197; makefile: 43
file content (18 lines) | stat: -rw-r--r-- 579 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use ExtUtils::MakeMaker;

WriteMakefile (
  AUTHOR        => 'Casey West <casey@geeknest.com>',
  ABSTRACT      => "Modify Email::MIME Objects Easily",
  NAME          => 'Email::MIME::Modifier',
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM     => {
    'Email::MIME'      => '1.82',
    'Email::MessageID' => '1.2',
    'Email::Simple'    => '1.92',
    'Test::More'       => '0.47',
    'Email::MIME::ContentType' => '1.0',
    'Email::MIME::Encodings'   => '1.3',
  },
  VERSION_FROM  => 'lib/Email/MIME/Modifier.pm',
);