File: Makefile.PL

package info (click to toggle)
libtest-file-perl 1.41-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 244 kB
  • ctags: 54
  • sloc: perl: 986; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,010 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
44
45
use ExtUtils::MakeMaker 6.48;

require 5.006;

eval "use Test::Manifest 1.21";

WriteMakefile(
	'NAME'          => 'Test::File',
	'ABSTRACT'      => 'Check file attributes',
	'LICENSE'		=> 'perl',
	'AUTHOR'		=> 'brian d foy <bdfoy@cpan.org>',

	'VERSION_FROM'   => 'lib/Test/File.pm',

	'PREREQ_PM' => {
		'Test::More'            => '0.95',
		'Test::Builder::Tester' => '1.04',
		'Test::Builder'         => '1.001006',
		'Test::utf8'            => '0',
		},

	META_ADD => {
		no_index => {
			package   => [ qw( version Local ) ],
			directory => [ qw( t/inc inc ) ],
			file      => [ qw( t/lib/test.pm ) ],
			namespace => [ qw( Local ) ],
			},
		},

	META_MERGE       => {
		'meta-spec' => { version => 2 },
		keywords    => ['testing','file'],
		resources   => {
		  		repository => {
		  			type => 'git',
		  			url  => 'git://github.com/briandfoy/test-file.git',
		  			web  => 'https://github.com/briandfoy/test-file',
		  			},
				},
		},

	clean  => { FILES    => q|Test-File-* test_files| },
	);