[project @ 7050]
[audio-mpd-common.git] / Makefile.PL
blob113a96044c7107d44983ea8c40f0ba293997738e
1 #!perl
3 # This file is part of Audio::MPD::Common
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 BEGIN { require 5.008; }
12 use strict;
13 use warnings;
14 use ExtUtils::MakeMaker;
16 WriteMakefile(
17     NAME                => 'Audio::MPD::Common',
18     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
19     VERSION_FROM        => 'lib/Audio/MPD/Common.pm',
20     ABSTRACT_FROM       => 'lib/Audio/MPD/Common.pm',
21     PREREQ_PM => {
22         'Class::Accessor' => 0,
23         'Readonly'        => 0,
24         'Test::More'      => 0,
25     },
26     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
27     clean => { FILES => [
28                 'Audio-MPD-Common-*', 'MANIFEST.bak',
29                 map { ( '*/' x $_ ) . '*~' } 0..6
30         ] },