[project @ 6332]
[audio-mpd-common.git] / Makefile.PL
blob0c33b0c2b45221c7d773813a7d1aa4ccc118c2a8
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 require 5.8.0;
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                 'Class::Accessor' => 0,
24                 'List::MoreUtils' => 0,
25                 'POE'             => 0,
26                 'Readonly'        => 0,
27         'Test::More'      => 0,
28     },
29     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
30     clean => { FILES => [
31                 'POE-Component-Client-MPD-*', 'MANIFEST.bak'
32                 map { ( '*/' x $_ ) . '*~' } 0..6
33         ] },