File: Makefile.PL

package info (click to toggle)
libdata-validate-perl 0.09-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: perl: 397; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 588 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'			=> 	'Data::Validate',
    'VERSION_FROM' 	=> 	'Validate.pm', # finds $VERSION
    'DISTNAME'		=>	'Data-Validate',
    'AUTHOR'		=>	'Richard Sonnen (sonnen@richardsonnen.com)',
    'PREREQ_PM'		=>	{
    					'POSIX'		=>	0,
					'Math::BigInt'	=>	1.77,
    					},
    'dist'			=>	{
    					'COMPRESS'	=>	'gzip -9f',
    					'SUFFIX'	=>	'gz',
    					'ZIP'		=>	'/usr/bin/zip',
    					'ZIPFLAGS'	=>	'-rl',
    					},
);