File: Makefile.PL

package info (click to toggle)
libfile-slurp-perl 9999.19-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 340 kB
  • ctags: 40
  • sloc: perl: 1,671; makefile: 39
file content (22 lines) | stat: -rw-r--r-- 528 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
22
use strict ;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	'NAME'		=> 'File::Slurp',
	'LICENSE'       => 'perl',
	'AUTHOR'        => 'Uri Guttman <uri@stemsystems.com>',
	'VERSION_FROM'	=> 'lib/File/Slurp.pm',
	'ABSTRACT_FROM' => 'lib/File/Slurp.pm',
	'META_MERGE'    => {
		requires	=> {
			perl	=> 5.004,
		},
	},
	'PREREQ_PM'	=> {
		'Carp'      => 0,
		'Exporter'  => 0,
		'Fcntl'     => 0,
		'POSIX'     => 0,
	},
);