-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
46 lines (43 loc) · 1.41 KB
/
Makefile.PL
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
46
use lib '.';
use strict;
use warnings;
use inc::Module::Install;
# Definition.
abstract 'Base class and script for filter MARC records.';
author 'Michal Josef Spacek <[email protected]>';
author_requires 'English' => 0;
author_requires 'File::Object' => 0.05;
author_requires 'Test::More' => 0;
author_requires 'Test::NoWarnings' => 0;
author_requires 'Test::Pod' => 0;
author_requires 'Test::Pod::Coverage' => 0;
install_script 'bin/marc-filter';
license 'bsd';
name 'App-MARC-Filter';
perl_version 5.006;
readme_from 'bin/marc-filter';
recursive_author_tests('xt');
requires 'Class::Utils' => 0;
requires 'English' => 0;
requires 'Error::Pure' => 0;
requires 'Getopt::Std' => 0;
requires 'List::MoreUtils' => 0;
requires 'MARC::File::XML' => '1.0.4';
requires 'Readonly' => 0;
requires 'Unicode::UTF8' => 0;
resources 'bugtracker' => 'https://github.com/michal-josef-spacek/App-MARC-Filter/issues',
resources 'homepage' => 'https://github.com/michal-josef-spacek/App-MARC-Filter';
resources 'repository' => 'git://github.com/michal-josef-spacek/App-MARC-Filter';
test_requires 'English' => 0;
test_requires 'Error::Pure::Utils' => 0;
test_requires 'File::Object' => 0;
test_requires 'File::Spec::Functions' => 0;
test_requires 'Perl6::Slurp' => 0;
test_requires 'Test::More' => 0;
test_requires 'Test::NoWarnings' => 0;
test_requires 'Test::Output' => 0;
test_requires 'Test::Warn' => 0.31;
tests_recursive;
version '0.04';
# Run.
WriteAll();