#!/usr/bin/env perl # Copyright (C) 2012 Rocky Bernstein # # 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 . use strict; use warnings; use Module::Build; use Config; my $builder = Module::Build->new( module_name => 'Devel::Trepan::Disassemble', add_to_cleanup => [ 'Devel-Trepan-*', 'tmp*', '*.got' ], create_makefile_pl => 'passthrough', dist_abstract => 'Adds disassemble support via B::Concise to Devel::Trepan', dist_author => 'Rocky Bernstein ', dist_version_from => 'lib/Devel/Trepan/Disassemble.pm', license => 'gpl', needs_compiler => 0, release_status => 'stable', configure_requires => { 'Module::Build' => '0.32', }, test_requires => { 'Data::Dumper' => 0, 'Test::More' => '0.81', }, requires => { 'perl' => '5.008', 'B::Concise' => 0, 'Devel::Trepan' => '0.001008', 'Getopt::Long' => 0, 'rlib' => '0.02', }, sign => ($ENV{PERL_MB_NOSIGN} ? 0 : 1), ); $builder->create_build_script();