r7899@merlin: jquelin | 2007-11-26 13:48:50 +0100
[acme-tie-eleet.git] / Build.PL
blobdebcacddcfffae38617684655ca4fe2dd006c537
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 use strict;
12 use warnings;
13 use Module::Build;
15 my $builder = Module::Build->new (
16     module_name         => 'Acme::Tie::Eleet',
17     dist_author         => 'Jerome Quelin <jquelin@cpan.org>',
18     license             => 'perl',
19     dist_version_from   => 'lib/Acme/Tie/Eleet.pm',
20     add_to_cleanup => [ 'Acme-Tie-Eleet-*',
21                         map { ( '*/' x $_ ) . '*~' } 0..4 ],
22     script_files   => [ ],
23     build_requires => {
24         'Test::More'    => 0,
25         'perl'          => '5.006',
26     },
27     requires       => {
28         'perl'          => '5.006',
29     },
30     recommends     => {
31         'Test::Pod'           => 0,
32         'Test::Pod::Coverage' => 0,
33     },
36 $builder->create_build_script();