The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#    Copyright (c) 2007-2009,2011 Dominique Dumont.
#
#    This file is part of Config-Model-Curses-UI.
#
#    Config-Model-Curses-UI is free software; you can redistribute it
#    and/or modify it under the terms of the GNU Lesser General Public License
#    as published by the Free Software Foundation; either version 2.1
#    of the License, or (at your option) any later version.
#
#    Config-Model 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
#    Lesser General Public License for more details.
#
#    You should have received a copy of the GNU Lesser General Public License
#    along with Config-Model; if not, write to the Free Software
#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
#    02110-1301 USA

use Module::Build;

require 5.008 ;

my $build = Module::Build->new (
    module_name => 'Config::Model::CursesUI',
    license => 'lgpl',
    dist_abstract => "Curses interface to edit config data through Config::Model",
    dist_author  => "Dominique Dumont (ddumont at cpan dot org)",
    requires => {
		'Config::Model'    => '1.233',
		'Exception::Class' => 0,
		'Curses::UI'       => '0.9606',
    },
    configure_requires => { 'Module::Build' => 0.42 },
    build_requires => {
        'Log::Log4perl'    => 0 ,
    },
    add_to_cleanup => [qw/stderr.log wr_data/] ,
);

$build->add_build_element('pl');
$build->create_build_script;