File: Makefile.PL

package info (click to toggle)
libtie-toobject-perl 0.03-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 56 kB
  • ctags: 6
  • sloc: perl: 58; makefile: 44
file content (20 lines) | stat: -rw-r--r-- 354 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
20
#!/usr/bin/perl -w

use strict;

use ExtUtils::MakeMaker;

WriteMakefile(
	NAME         => 'Tie::ToObject',
	VERSION_FROM => 'lib/Tie/ToObject.pm',
	INSTALLDIRS  => 'site',
	SIGN         => 1,
	PL_FILES     => { },
	PREREQ_PM    => {
		'Tie::RefHash' => 0, # core, used in test
		'Test::use::ok' => 0,
		'Test::More' => 0,
		'Scalar::Util' => 0,
	},
);