new extension FILE
[language-befunge.git] / Makefile.PL
blob61709eb014bb68f7468b694540ca9ce012f63645
1 #!perl
3 # This file is part of Language::Befunge.
4 # Copyright (c) 2001-2009 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 BEGIN { require 5.010; }
12 use strict;
13 use warnings;
15 use ExtUtils::MakeMaker;
16 WriteMakefile(
17     NAME          => 'Language::Befunge',
18     AUTHOR        => 'Jerome Quelin, <jquelin@cpan.org>',
19     VERSION_FROM  => 'lib/Language/Befunge.pm',
20     ABSTRACT_FROM => 'lib/Language/Befunge.pm',
21     EXE_FILES     => [ 'bin/jqbef98' ],
22     LICENSE       => 'perl',
23     PREREQ_PM     => {
24         'aliased'               => '0.22',
25         'Carp'                  => 0,
26         'Class::XSAccessor'     => 0,
27         'Config'                => 0,
28         'FindBin'               => 0,
29         'IO::Handle'            => 0,
30         'List::Util'            => 0,
31         'Math::BaseCalc'        => 0,
32         'POSIX'                 => 0,
33         'Readonly'              => 0,
34         'Storable'              => 0,
35         'Test::Exception'       => 0,
36         'Test::More'            => 0,
37         'Test::Output'          => 0,
38         'UNIVERSAL::require'    => 0,
39     },
40     dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
41     clean         => { FILES => [
42                     'Language-Befunge-*', '*.tmp', '*.bak',
43                     map { ( '*/' x $_ ) . '*~' } 0..5 ] },
44     test          => { TESTS => 't/*.t t/*/*.t' },