-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
31 lines (28 loc) · 714 Bytes
/
Copy pathMakefile.PL
File metadata and controls
31 lines (28 loc) · 714 Bytes
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
use 5.006; use strict; use warnings;
my $sc = q<https://github.com/ap/JSON-ToHTML>;
my $bt = q<https://rt.cpan.org/Public/Dist/Display.html?Name=JSON-ToHTML>;
our %META = (
name => 'JSON-ToHTML',
author => 'Aristotle Pagaltzis <pagaltzis@gmx.de>', # can be an array
x_copyright => { holder => 'Aristotle Pagaltzis', year => 2024 },
license => 'perl_5',
resources => {
repository => { type => 'git', url => "$sc.git", web => $sc },
bugtracker => { web => $bt },
},
dynamic_config => 0,
prereqs => {
runtime => {
requires => {qw(
perl 5.006
Scalar::Util 0
)},
},
test => {
requires => {qw(
Test::More 0
)},
},
},
);
require './inc/WriteMakefile.pl';