remark release date
[Net-Radio-oFono.git] / Build.PL
blob142f76701263eb0f2f1e979299a858ccf52ef11e
1 use 5.006;
2 use strict;
3 use warnings;
4 use Module::Build;
6 my $builder = Module::Build->new(
7                                  module_name        => 'Net::Radio::oFono',
8                                  license            => 'perl',
9                                  dist_author        => q{Jens Rehsack <rehsack@cpan.org>},
10                                  dist_version_from  => 'lib/Net/Radio/oFono.pm',
11                                  configure_requires => { 'Module::Build' => 0, },
12                                  build_requires     => { 'Test::More' => '0.90', },
13                                  requires           => {
14                                                'perl'              => 5.010,
15                                                'Carp::Assert'      => '0.18',
16                                                'Hash::MoreUtils'   => '0.02',
17                                                'List::MoreUtils'   => '0.22',
18                                                'List::Util'        => 0,
19                                                'Log::Any'          => '0.10',
20                                                'Log::Any::Adapter' => 0,
21                                                'Net::DBus'         => '1.0.0',
22                                                'Params::Util'      => '0.37',
23                                                'Scalar::Util'      => 0,
24                                              },
25                                  meta_merge => {
26                                      no_index => { namespace => [qw(Net::Radio::oFono::Helpers)], },
27                                      resources => {
28                                                     repository => 'git://repo.or.cz/',
29                                                     license    => 'http://dev.perl.org/licenses/',
30                                                   },
31                                                },
32                                  add_to_cleanup     => ['Net-oFono-*'],
33                                  create_makefile_pl => 'traditional',
34                                 );
36 my %new_cpan_meta_resources_for_later_using = (
37                     resources => {
38                         license    => 'http://dev.perl.org/licenses/',
39                         homepage   => 'http://www.ofono.org/',
40                         bugtracker => {
41                             web => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Radio-oFono',
42                             mailto => 'bug-net-radio-ofono@rt.cpan.org',
43                         },
44                         repository => {
45                                         url  => 'git://repo.or.cz/',
46                                         web  => 'http://repo.or.cz/',
47                                         type => 'git',
48                                       },
49                                  }
52 $builder->create_build_script();