File: Makefile.PL

package info (click to toggle)
libparams-validate-perl 0.04-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 76 kB
  • ctags: 71
  • sloc: perl: 726; makefile: 48
file content (11 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
use ExtUtils::MakeMaker;

WriteMakefile( 'NAME'		=> 'Params::Validate',
	       'VERSION_FROM'	=> 'lib/Params/Validate.pm',
	       'PREREQ_PM'		=> {},
	       ( $] >= 5.005 ?
		 ( ABSTRACT_FROM => 'lib/Params/Validate.pm', # retrieve abstract from module
		   AUTHOR        => 'Dave Rolsky, <autarch@urth.org>') :
		 ()
	       ),
	     );