File: Makefile.PL

package info (click to toggle)
libstring-compare-constanttime-perl 0.320-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 108 kB
  • sloc: perl: 49; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 828 bytes parent folder | download | duplicates (3)
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);