v0.9.3
[poe-component-client-mpd.git] / Makefile.PL
bloba270d7db94d20ec2d337fe26fd30cfe5b65fabd2
1 #!perl
3 # This file is part of POE::Component::Client::MPD.
4 # Copyright (c) 2007-2008 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 BEGIN { require 5.010; }
12 use strict;
13 use warnings;
14 use ExtUtils::MakeMaker;
16 WriteMakefile(
17     NAME          => 'POE::Component::Client::MPD',
18     AUTHOR        => 'Jerome Quelin <jquelin@cpan.org>',
19     VERSION_FROM  => 'lib/POE/Component/Client/MPD.pm',
20     ABSTRACT_FROM => 'lib/POE/Component/Client/MPD.pm',
21     PL_FILES      => {},
22     PREREQ_PM     => {
23         'Audio::MPD::Common'          => '0.1.4',
24         'Carp'                        => 0,
25         'Class::Accessor::Fast'       => 0,
26         'Exporter'                    => 0,
27         'FindBin'                     => 0,
28         'POE'                         => 0,
29         'POE::Component::Client::TCP' => 0,
30         'Readonly'                    => 0,
31         'Test::More'                  => 0,
32     },
33     dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
34     clean         => { FILES => [
35                 'POE-Component-Client-MPD-*', 'MANIFEST.bak',
36                 map { ( '*/' x $_ ) . '*~' } 0..6
37         ] },