r5088@merlin: jquelin | 2007-05-25 17:21:14 +0200
[inline-befunge.git] / Build.PL
blobd727e39e35e1d8f600f9af4cb1e29eceb8538d4a
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     requires => {
24         'Inline'            => '0.43',
25         'Language::Befunge' => '0.36',
26     },
29 $builder->create_build_script();