File: Makefile.PL

package info (click to toggle)
libobject-import-perl 1.006-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 224 kB
  • sloc: perl: 218; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 643 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use ExtUtils::MakeMaker;
WriteMakefile(
	NAME => "Object::Import",
	ABSTRACT => "import methods of an object as functions to a package",
	VERSION_FROM => "lib/Object/Import.pm",
	PREREQ_PM => {
		"MRO::Compat" => 0, # alternately mro 0 is okay
		"Scalar::Util" => 0,
		"warnings" => 0,
		"IO::Handle" => 0,
		"strict" => 0,
	},
	MIN_PERL_VERSION => 5.00800, # /\pL/
	BUILD_REQUIRES => {
		"MRO::Compat" => 0, # alternately mro 0 is okay
		"Scalar::Util" => 0,
		"warnings" => 0,
		"IO::Handle" => 0,
		"strict" => 0,
		"Test::More" => 0.47, # used in tests
		"Math::BigInt" => 1.59, # used in tests
		"File::Temp" => 0, # used in tests
	},
);