-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
38 lines (35 loc) · 1.1 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
use lib '.';
use strict;
use warnings;
use inc::Module::Install;
# Definition.
abstract 'Object for SPDX licenses handling.';
author 'Michal Josef Spacek <skim@cpan.org>';
author_requires 'English' => 0;
author_requires 'File::Object' => 0;
author_requires 'Test::More' => 0;
author_requires 'Test::NoWarnings' => 0;
author_requires 'Test::Pod' => 0;
author_requires 'Test::Pod::Coverage' => 0;
install_share 'share';
license 'bsd';
name 'License-SPDX';
perl_version 5.008;
readme_from 'SPDX.pm';
recursive_author_tests('xt');
requires 'Class::Utils' => 0.14;
requires 'Cpanel::JSON::XS' => 0;
requires 'Error::Pure' => 0.30;
requires 'File::Share' => 0;
requires 'List::Util' => 0;
requires 'Perl6::Slurp' => 0;
resources 'bugtracker' => 'https://github.com/michal-josef-spacek/License-SPDX/issues',
resources 'homepage' => 'https://github.com/michal-josef-spacek/License-SPDX';
resources 'repository' => 'git://github.com/michal-josef-spacek/License-SPDX';
test_requires 'JSON::PP::Boolean' => 0;
test_requires 'Test::More' => 0;
test_requires 'Test::NoWarnings' => 0;
tests_recursive;
version '0.07';
# Run.
WriteAll();