use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'Chart::OFC2', license => 'perl', dist_author => 'Jozef Kutej ', dist_version_from => 'lib/Chart/OFC2.pm', requires => { 'Moose' => 0, 'Class::MOP' => 0.65, # - New method - get_all_attributes (nothingmuch) 'Moose::Util::TypeConstraints' => 0, 'MooseX::StrictConstructor' => 0, 'Carp::Clan' => 0, 'JSON::XS' => 0, 'List::MoreUtils' => 0, 'List::Util' => 0, 'Scalar::Util' => 0, 'MooseX::Types' => 0, 'MooseX::Aliases' => 0, }, build_requires => { 'Test::More' => 0, 'Test::Differences' => 0, 'Test::Exception' => 0, 'File::Slurp' => 0, }, script_files => [ ], add_to_cleanup => [ 'Chart-OFC2-*' ], sign => 1, meta_merge => { resources => { repository => 'http://github.com/jozef/chart-ofc2/', bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Chart-OFC2', }, keywords => [ qw/ chart flash / ], }, ); $builder->create_build_script();