r7902@merlin: jquelin | 2007-11-26 13:54:12 +0100
[acme-metasyntactic-buzzwords.git] / Build.PL
blobcc5e3da60e6afa88770949c3f2a1fb75c12325ce
1 #!perl
3 # This file is part of Acme::MetaSyntactic::buzzwords.
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 use strict;
12 use warnings;
13 use Module::Build;
15 my $builder = Module::Build->new (
16     module_name         => 'Acme::MetaSyntactic::buzzwords',
17     dist_author         => 'Jerome Quelin <jquelin@cpan.org>',
18     license             => 'perl',
19     dist_version_from   => 'lib/Acme/MetaSyntactic/buzzwords.pm',
20     add_to_cleanup => [
21         'Acme-MetaSyntactic-buzzwords-*', 'MANIFEST.bak',
22         map { ( '*/' x $_ ) . '*~' } 0..5 ],
23     script_files   => [ ],
24     build_requires => {
25         'Acme::MetaSyntactic' => 0,
26         'Test::More'          => 0,
27     },
28     requires       => {
29         'Acme::MetaSyntactic' => 0,
30     },
31     recommends     => {
32         'Test::Kwalitee'      => 0,
33         'Test::Pod'           => 0,
34         'Test::Pod::Coverage' => 0,
35     },
38 $builder->create_build_script();