r7854@merlin: jquelin | 2007-11-26 12:58:39 +0100
[language-ook.git] / Build.PL
blobbdf94d43406dcee9cec1e1f0b1963513d041108f
1 #!perl
3 # This file is part of Language::Ook.
4 # Copyright (c) 2002-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         => 'Language::Ook',
17     dist_author         => 'Jerome Quelin <jquelin@cpan.org>',
18     license             => 'perl',
19     dist_version_from   => 'lib/Language/Ook.pm',
20     add_to_cleanup => [
21                 'Language-Ook-*',
22                 map { ( '*/' x $_ ) . '*~' } 0..3 ],
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();