1#!/usr/bin/perl
2
3use 5.006;
4use strict;
5use warnings FATAL => 'all';
6use ExtUtils::MakeMaker;
7
8WriteMakefile(
9    NAME               => 'Text::Trac',
10    AUTHOR             => q{Gosuke Miyashita, <gosukenator at gmail.com>},
11    VERSION_FROM       => 'lib/Text/Trac.pm',
12    ABSTRACT_FROM      => 'lib/Text/Trac.pm',
13    LICENSE            => 'perl',
14    EXE_FILES          => [ 'script/trac2html' ],
15    MIN_PERL_VERSION   => 5.006,
16    CONFIGURE_REQUIRES => {
17        'ExtUtils::MakeMaker' => 0,
18    },
19    BUILD_REQUIRES   => {
20        'Test::More' => '1.001014',
21        'Test::Base' => 0,
22    },
23    PREREQ_PM                  => {
24        'UNIVERSAL::require'       => 0,
25        'Class::Accessor::Fast'    => 0,
26        'Class::Data::Inheritable' => 0,
27        'Tie::IxHash'              => 0,
28        'List::MoreUtils'          => 0,
29        'HTML::Entities'           => 0,
30        'Path::Tiny'               => 0,
31    },
32    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
33    clean => { FILES => 'Text-Trac-*' },
34    (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
35        'meta-spec' => { version => 2 },
36        resources => {
37            repository => {
38                type => 'git',
39                url  => 'https://github.com/manwar/Text-Trac.git',
40                web  => 'https://github.com/manwar/Text-Trac',
41            },
42        }})
43     : ()
44    ),
45);
46