The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
#  Copyright (C) 2011, 2012 Rocky Bernstein <rocky@cpan.org>
#
#  This program is free software: you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.

use strict;
use warnings;
use Module::Build;
use Config;
use File::Basename;
use File::Spec;

my $lib = File::Spec->catfile(dirname(__FILE__), 'lib');
unshift @INC, $lib;
require Devel::Trepan::Version;

my $release_status = ($Devel::Trepan::Version::VERSION =~ /_/) ? 
    'testing' : 'stable';
# print "$Devel::Trepan::Version::VERSION $release_status\n";

my $builder = Module::Build->new( 
    module_name         => 'Devel::Trepan',
    add_to_cleanup      => [ 'Devel-Trepan-*', 'tmp*', '*.got'  ],
    create_makefile_pl  => 'passthrough',
    dist_abstract       => 
    'Modular Perl Debugger (akin to Ruby "Trepanning" Debuggers).',
    dist_author         => 'Rocky Bernstein <rocky@cpan.org>',
    dist_version_from   => 'lib/Devel/Trepan/Version.pm',
    license             => 'gpl',
    needs_compiler      => 0,
    release_status      => $release_status,

    meta_merge => {
        resources => {
            bugtracker  => 'https://github.com/rocky/Perl-Devel-Trepan/issues',
            repository  => 'http://github.com/rocky/Perl-Devel-Trepan'
        }
    },    

    configure_requires  => { 
        'Module::Build' => '0.32',
                              
    },
    build_requires => {
        # 'String::Diff'        => 0,
    },
    test_requires => {
        'Test::More'                        => '0.81',
        'rlib'                              => '0.02',
    },
    recommends => {
        'Data::Printer'                     => 0,
        'Devel::Callsite'                   => 0.05,
        'Eval::WithLexicals'                => 0,
        'Pod::Text::Color'                  => 2.06,
        'Term::ReadKey'                     => 0,
        'Term::ReadLine::Perl'              => 0,
    },

    requires => {
        'perl'                              => '5.008008',
        'Array::Columnize'                  => '1.01',
        # 'Capture::Tiny'                     => 0,
        'Data::Dumper'                      => 0,
        'Getopt::Long'                      => '2.36',
        'Devel::Trepan::Version'            => 0,
        'Digest::SHA'                       => 0,
        'PadWalker'                         => 0,
        'Pod::Text'                         => 3.13,
        'Syntax::Highlight::Perl::Improved' => 1.01,
        'rlib'                              => '0.02',
        'version'                           => 0,
    },
    sign                => ($ENV{PERL_MB_NOSIGN} ? 0 : 1),
    );

$builder->create_build_script();