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.
17 'Class::XSAccessor' => 0,
18 'CPANPLUS::Shell::Default::Plugins::Prereqs' => 0,
21 'Curses::UI::POE' => 0,
22 'File::Basename' => 0,
24 'Getopt::Euclid' => 0,
25 'Hook::Output::File' => 0,
26 'List::MoreUtils' => 0,
29 my %build_requires = (
35 'Test::Pod::Coverage' => 0,
38 my $builder = Module::Build->new(
39 module_name => 'App::CPAN2Pkg',
41 dist_author => 'Jerome Quelin <jquelin@cpan.org>',
42 dist_version_from => 'lib/App/CPAN2Pkg.pm',
43 build_requires => \%build_requires,
44 requires => \%requires,
45 recommends => \%recommends,
46 script_files => [ 'bin/cpan2pkg' ],
48 'App-CPAN2Pkg-*', map { ( '*/' x $_ ) . '*~' } 0..5
50 create_makefile_pl => 'traditional',
53 repository => 'http://repo.or.cz/w/app-cpan2pkg.git',
58 $builder->create_build_script();