r7895@merlin: jquelin | 2007-11-26 13:17:54 +0100
[inline-befunge.git] / Build.PL
blob6a8f105262dcf9719acc7f421bb724bed9c6bc70
1 #!perl
3 # This file is part of Inline::Befunge.
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         => 'Inline::Befunge',
17         license             => 'perl',
18     dist_version_from   => 'lib/Inline/Befunge.pm',
19     add_to_cleanup => [
20                 'Inline-Befunge-*', '_Inline',
21                 map { ( '*/' x $_ ) . '*~' } 0..3 ],
22     build_requires => {
23         'Inline'            => '0.43',
24         'Language::Befunge' => '3.00',
25     },
26     requires => {
27         'Inline'            => '0.43',
28         'Language::Befunge' => '3.00',
29     },
30     recommends     => {
31         'Test::Pod'           => 0,
32         'Test::Pod::Coverage' => 0,
33     },
36 $builder->create_build_script();