File: Makefile.PL

package info (click to toggle)
libmail-dkim-perl 0.39-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 776 kB
  • sloc: perl: 4,705; makefile: 45
file content (18 lines) | stat: -rw-r--r-- 547 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use 5.006_001;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	NAME           => 'Mail::DKIM',
	VERSION        => "0.39",
	PREREQ_PM      => {
			Crypt::OpenSSL::RSA => 0.24,
			Digest::SHA => 0,
			Mail::Address => 0,
			MIME::Base64 => 0,
			Net::DNS => 0,
			Test::Simple => 0,  # only needed for `make test'
		},
	ABSTRACT_FROM  => 'lib/Mail/DKIM.pm', # retrieve abstract from module
	AUTHOR         => 'Jason Long <jason@long.name>',
);