-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
23 lines (22 loc) · 884 Bytes
/
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
use ExtUtils::MakeMaker::CPANfile;
WriteMakefile(
'NAME' => 'OpenTracing::Implementation::DataDog',
'VERSION_FROM' => 'lib/OpenTracing/Implementation/DataDog.pm',
'LICENSE' => 'perl',
test => {
TESTS => 't/OpenTracing/Implementation/DataDog/*.t t/OpenTracing/Implementation/DataDog/*/*.t',
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/Perceptyx/perl-opentracing-implementation-datadog.git',
web => 'https://github.com/Perceptyx/perl-opentracing-implementation-datadog',
},
bugtracker => {
web => 'https://github.com/Perceptyx/perl-opentracing-implementation-datadog/issues'
},
},
},
);