File: Makefile.PL

package info (click to toggle)
libstring-mkpasswd-perl 0.02-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 96 kB
  • ctags: 23
  • sloc: perl: 223; makefile: 45
file content (21 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use 5.006001;
use ExtUtils::MakeMaker;

WriteMakefile(
	NAME			=> "String::MkPasswd",
	VERSION_FROM	=> "lib/String/MkPasswd.pm",
	PREREQ_PM		=> {
		"File::Basename"	=>  0,
		"Getopt::Long"		=>  0,
		"Test::More"		=>  0,
		"Text::Wrap"		=>  0,
	},
	EXE_FILES		=> [ "bin/mkpasswd.pl" ],
	($] >= 5.005
		? (
			ABSTRACT_FROM	=> "lib/String/MkPasswd.pm",
			AUTHOR			=> "Chris Grau <cgrau\@cpan.org>",
		)
		: ()
	),
);