2 # This file is part of App::CPAN2Pkg.
3 # Copyright (c) 2009 Jerome Quelin, all rights reserved.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the same terms as Perl itself.
16 'Class::XSAccessor' => 0,
19 'Curses::UI::POE' => 0,
21 'Hook::Output::File' => 0,
24 my %build_requires = (
30 'Test::Pod::Coverage' => 0,
33 my $builder = Module::Build->new(
34 module_name => 'App::CPAN2Pkg',
36 dist_author => 'Jerome Quelin <jquelin@cpan.org>',
37 dist_version_from => 'lib/App/CPAN2Pkg.pm',
38 build_requires => \%build_requires,
39 requires => \%requires,
40 recommends => \%recommends,
41 script_files => [ 'bin/cpan2pkg' ],
43 'App-CPAN2Pkg-*', map { ( '*/' x $_ ) . '*~' } 0..5
45 create_makefile_pl => 'traditional',
48 $builder->create_build_script();