# # This file is part of Padre::Plugin::SpellCheck. # Copyright (c) 2009 Jerome Quelin, all rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the same terms as Perl itself. # # use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'Padre::Plugin::SpellCheck', license => 'perl', dist_author => 'Jerome Quelin ', dist_version_from => 'lib/Padre/Plugin/SpellCheck.pm', build_requires => { 'Test::More' => 0, }, requires => { 'File::Basename' => 0, 'File::Spec::Functions' => 0, 'Module::Util' => 0, 'Padre' => '0.26', 'Text::Aspell' => 0, 'Class::XSAccessor' => 0, }, add_to_cleanup => [ 'Padre-Plugin-SpellCheck-*', map { ( '*/' x $_ ) . '*~' } 0..5 ], create_makefile_pl => 'traditional', meta_merge => { resources => { homepage => 'http://padre.perlide.org/', repository => 'http://svn.perlide.org/padre/trunk/Padre-Plugin-SpellCheck/', } }, ); $builder->add_build_element('mo'); $builder->add_build_element('png'); $builder->create_build_script();