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 (43 lines) | stat: -rw-r--r-- 939 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use ExtUtils::MakeMaker 6.55;

require 5.008;

eval "use Test::Manifest 1.21";

WriteMakefile(
	'NAME'          => 'Test::Prereq',
	'ABSTRACT'      => 'Ensure a build file lists all pre-requisites',
	'VERSION_FROM'  => 'lib/Test/Prereq.pm',
	'LICENSE'       => 'perl',
	'AUTHOR'        => 'brian d foy <bdfoy@cpan.org>',

	'NORECURS'      => 1,

	'BUILD_REQUIRES' => {
		'ExtUtils::MakeMaker'    => '6.55',
		},

	'TEST_REQUIRES' => {
		'Test::Builder'          => '0',
		'Test::Builder::Tester'  => '0',
		'Test::More'             => '0.95',
		},

	'PREREQ_PM'	    => {
		'Module::CoreList'       => '0',
		'Module::Info'           => '0',
		},

	'clean' => { FILES => 'Test-Prereq-*' },

	'META_MERGE' => {
        'meta-spec' => { version => 2 },
		resources => {
			repository => {
				type => 'git',
				url  => 'git@github.com:briandfoy/test-prereq.git',
				web  => 'https://github.com/briandfoy/test-prereq',
				},
			},
		},
	);