File: Makefile.PL

package info (click to toggle)
libmath-base85-perl 0.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 100 kB
  • sloc: perl: 92; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,129 bytes parent folder | download
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
39
40
41
42
43
44
#!/usr/bin/env perl

use strict;
use warnings;

use ExtUtils::MakeMaker qw(6.64);

WriteMakefile(
    NAME          => 'Math::Base85',
    VERSION_FROM  => 'lib/Math/Base85.pm',
    ABSTRACT_FROM => 'lib/Math/Base85.pm',
    AUTHOR        => [
        'Tony Monroe <tmonroe plus perl at nog dot net>',
        'Paul Cochrane <paul@liekut.de>',
    ],
    LICENSE          => 'perl_5',
    MIN_PERL_VERSION => 5.006,
    PREREQ_PM        => {
        'constant'     => 0,
        'strict'       => 0,
        'vars'         => 0,
        'warnings'     => 0,
        'Carp'         => 0,
        'Exporter'     => 0,
        'Math::BigInt' => '0',
    },
    TEST_REQUIRES => {
        'Test'       => 0,
        'Test::More' => 0,
    },
    META_MERGE => {
        "meta-spec"    => { version => 2 },
        dynamic_config => 0,
        resources      => {
            repository => {
                type => 'git',
                url  => 'git@github.com:paultcochrane/Math-Base85.git',
                web  => 'https://github.com/paultcochrane/Math-Base85',
            },
        },
    },
);

# vim: expandtab shiftwidth=4