1#!/usr/bin/env perl
2
3use strict;
4use warnings;
5
6use ExtUtils::MakeMaker qw(6.64);
7
8WriteMakefile(
9    NAME          => 'Math::Base85',
10    VERSION_FROM  => 'lib/Math/Base85.pm',
11    ABSTRACT_FROM => 'lib/Math/Base85.pm',
12    AUTHOR        => [
13        'Tony Monroe <tmonroe plus perl at nog dot net>',
14        'Paul Cochrane <ptc@cpan.org>',
15    ],
16    LICENSE          => 'perl_5',
17    MIN_PERL_VERSION => 5.006,
18    PREREQ_PM        => {
19        'constant'     => 0,
20        'strict'       => 0,
21        'vars'         => 0,
22        'warnings'     => 0,
23        'Carp'         => 0,
24        'Exporter'     => 0,
25        'Math::BigInt' => '0',
26    },
27    TEST_REQUIRES => {
28        'Test'       => 0,
29        'Test::More' => 0,
30    },
31    META_MERGE => {
32        "meta-spec"    => { version => 2 },
33        dynamic_config => 0,
34        resources      => {
35            bugtracker => {
36                web => 'https://github.com/paultcochrane/Math-Base85/issues',
37            },
38            repository => {
39                type => 'git',
40                url  => 'git@github.com:paultcochrane/Math-Base85.git',
41                web  => 'https://github.com/paultcochrane/Math-Base85',
42            },
43        },
44    },
45);
46
47# vim: expandtab shiftwidth=4
48