building the queue listbox
[app-cpan2pkg.git] / Build.PL
blob4e0ddaf0e24c687373dd959041eb64801b45e205
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.
10 use strict;
11 use warnings;
13 use Module::Build;
15 my $builder = Module::Build->new(
16     module_name         => 'App::CPAN2Pkg',
17     license             => 'perl',
18     dist_author         => 'Jerome Quelin <jquelin@cpan.org>',
19     dist_version_from   => 'lib/App/CPAN2Pkg.pm',
20     build_requires => {
21         'Test::More' => 0,
22     },
23     add_to_cleanup      => [ 'App-CPAN2Pkg-*' ],
24     create_makefile_pl => 'traditional',
27 $builder->create_build_script();