# $Author: ddumont $ # $Date: 2009-06-24 12:48:54 +0200 (mer 24 jun 2009) $ # $Revision: 987 $ # Copyright (c) 2007-2009 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 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 Public License for more details. # # You should have received a copy of the GNU Lesser 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' => '0.637', 'Exception::Class' => 0, 'Curses::UI' => '0.9606', }, build_requires => { 'Log::Log4perl' => 0 , }, add_to_cleanup => [qw/stderr.log wr_data/] , ); $build->add_build_element('pl'); $build->create_build_script;