r7895@merlin: jquelin | 2007-11-26 13:17:54 +0100
[inline-befunge.git] / Makefile.PL
blob8d1257dd6c88cf5b54182243684b26ea2eb40ed9
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 ExtUtils::MakeMaker;
15 WriteMakefile(
16     NAME                => 'Inline::Befunge',
17     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
18     VERSION_FROM        => 'lib/Inline/Befunge.pm',
19     ABSTRACT_FROM       => 'lib/Inline/Befunge.pm',
20     LICENSE             => 'perl',
21     PL_FILES            => {},
22     PREREQ_PM => {
23                 'Inline'            => '0.43',
24                 'Language::Befunge' => '3.00',
25     },
26     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
27     clean => { FILES => [
28                 'Inline-Befunge-*', '_Inline',
29                 map { ( '*/' x $_ ) . '*~' } 0..3
30                 ] },