File: Makefile.PL

package info (click to toggle)
libtext-vcard-perl 2.03-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 148 kB
  • ctags: 29
  • sloc: perl: 769; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 390 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;

my $ABSTRACT = "Module for parsing and creating vCards (RFC 2426) address";

WriteMakefile(
 	'NAME'		=> 'Text::vCard',
	'ABSTRACT'	=> $ABSTRACT,
	'AUTHOR'	=> 'Leo Lapworth',
	'VERSION_FROM'	=> 'lib/Text/vCard.pm',
	'PREREQ_PM'		=> {
    	Text::vFile::asData => 0.05,
    	Test::More 			=> 0.1,
		File::Slurp 		=> 9999.04,
		MIME::QuotedPrint 	=> 3.07,
    }, 
);