first pass at the Changes introduced by the branch
[language-befunge.git] / Makefile.PL
blob4b9e6ef6fef86409b73fe96d6c6ba1a9c7d9d2b9
1 #!perl
3 # This file is part of Language::Befunge.
4 # Copyright (c) 2001-2008 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/jqbf98' ],
22     LICENSE       => 'perl',
23     PREREQ_PM     => {
24         'aliased'               => '0.22',
25         'Class::Accessor::Fast' => 0,
26         'Storable'              => 0,
27         'Test::More'            => 0,
28         'UNIVERSAL::require'    => 0,
29     }
30     dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
31     clean         => { FILES => [
32                     'Language-Befunge-*',
33                                         map { ( '*/' x $_ ) . '*~' } 0..5 ] },
34     test          => { TESTS => 't/*.t t/*/*.t' },