[project @ 6332]
[audio-mpd-common.git] / Build.PL
blob3725e179264ac4f74b901c6ff29b24a016a58545
1 #!perl
3 # This file is part of POE::Component::Client::MPD.
4 # Copyright (c) 2007 Jerome Quelin, all rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the same terms as Perl itself.
11 use strict;
12 use warnings;
13 use Module::Build;
15 my $builder = Module::Build->new (
16     module_name         => 'POE::Component::Client::MPD',
17     dist_author         => 'Jerome Quelin <jquelin@cpan.org>',
18     license             => 'perl',
19     dist_version_from   => 'lib/POE/Component/Client/MPD.pm',
20     add_to_cleanup => [
21         'POE-Component-Client-MPD-*', 'MANIFEST.bak',
22         map { ( '*/' x $_ ) . '*~' } 0..6 ],
23     script_files => [ ],
24     build_requires => {
25         'Test::More'  => 0,
26     },
27     requires => {
28         'Class::Accessor' => 0,
29         'List::MoreUtils' => 0,
30         'POE'             => 0,
31         'Readonly'        => 0,
32         'perl'            => '5.8.0',
33     },
36 $builder->create_build_script();