-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile.PL
More file actions
27 lines (24 loc) · 828 Bytes
/
Copy pathMakefile.PL
File metadata and controls
27 lines (24 loc) · 828 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
use strict;
use warnings;
use ExtUtils::MakeMaker qw(6.48);
my %args = (
NAME => 'String::Compare::ConstantTime',
AUTHOR => ['Doug Hoyte <doug@hcsw.org>'],
ABSTRACT_FROM => 'lib/String/Compare/ConstantTime.pm',
VERSION_FROM => 'lib/String/Compare/ConstantTime.pm',
PREREQ_PM => {
},
OBJECT => 'ConstantTime.o',
LICENSE => 'perl',
dist => {
PREOP => 'pod2text $(VERSION_FROM) > $(DISTVNAME)/README',
},
META_MERGE => {
resources => {
repository => 'git://github.com/hoytech/String-Compare-ConstantTime.git',
bugtracker => 'https://github.com/hoytech/String-Compare-ConstantTime/issues',
},
},
MIN_PERL_VERSION => 5.8.0,
);
WriteMakefile(%args);