File: Makefile.PL

package info (click to toggle)
libtest-prereq-perl 1.038-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 176 kB
  • ctags: 22
  • sloc: perl: 313; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use ExtUtils::MakeMaker;

WriteMakefile (
	'NORECURS'  => 1,
	'NO_META'   => 1,
	'NO_MYMETA' => 1,

	'NAME'      => 'Test::Prereq',
	'VERSION'   => '0.05',

	'CONFIGURE_REQUIRES' => {
		'Test::Manifest' => '0',
		},
	
	'BUILD_REQUIRES' => {
		'Test::Output' => '0',
		},

	'PREREQ_PM' => {
		'HTTP::Size'      => '0',
		'XML::Twig'       => '0',
		},

	'PM' => {
		'lib/Prereq.pm' => '$(INST_LIBDIR)/Prereq.pm',
		},

	depend => { Makefile => 't/test_manifest' },
	test   => { TESTS => $tests },
	);

1;