r7898@merlin: jquelin | 2007-11-26 13:47:34 +0100
[acme-tie-eleet.git] / Makefile.PL
blob430920065bf43111d5b636930be57c874e955816
1 #!perl
3 # This file is part of Acme::Tie::Eleet.
4 # Copyright (c) 2001-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.006; }
12 use strict;
13 use warnings;
14 use ExtUtils::MakeMaker;
16 WriteMakefile(
17     NAME                => 'Acme::Tie::Eleet',
18     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
19     VERSION_FROM        => 'lib/Acme/Tie/Eleet.pm',
20     ABSTRACT_FROM       => 'lib/Acme/Tie/Eleet.pm',
21     LICENSE             => 'perl',
22     PREREQ_PM => {
23         'Test::More'    => 0,
24     },
25     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
26     clean => { FILES => [
27                 'Acme-Tie-Eleet-*',
28                 map { ( '*/' x $_ ) . '*~' } 0..4
29                 ] },